UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

13 lines (12 loc) 259 B
const isLocalStorageAvailable = () => { try { return ( typeof window !== 'undefined' && 'setItem' in localStorage && 'getItem' in localStorage ); } catch (error) { return false; } }; export default isLocalStorageAvailable;