You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update module to use ES modules. Export default storage object, utility classes, and a fallback storage object under storage. Thanks to @philipvonbargen for the PR.
Example:
// ES Modulesimportstorage,{CookieStorage,isSupported}from'local-storage-fallback'// requireconst{storage}=require('local-storage-fallback')
Added a quick test to make sure that the browser build works as intended.