UNPKG

@fluent-windows/hooks

Version:
13 lines (12 loc) 247 B
/** * Get the current `global this` * * Demo * import { useGlobal } from '@fluent-windows/hooks' * * const global = useGlobal() */ function useGlobal() { return typeof window !== 'undefined' ? window : global; } export default useGlobal;