UNPKG

@modern-js/runtime-utils

Version:

A Progressive React Framework for modern web development.

8 lines (7 loc) 262 B
const isBrowser = "u" > typeof window && void 0 !== window.document; const getAsyncLocalStorage = async ()=>{ if (!isBrowser) return null; console.error('You should not get async storage in browser'); return null; }; export { getAsyncLocalStorage };