UNPKG

hd-utils

Version:

A handy utils for modern JS developers

7 lines (6 loc) 168 B
/** * @description Return true if the current environment is running on browser. */ export default function isBrowser() { return typeof window !== 'undefined'; }