UNPKG

beautiful-react-hooks

Version:

A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development

6 lines (5 loc) 207 B
/** * Exports a boolean value reporting whether the given API is supported or not */ const isApiSupported = (api) => (typeof window !== 'undefined' ? api in window : false); export default isApiSupported;