UNPKG

vanillajs-browser-helpers

Version:

Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS in the browser

8 lines (7 loc) 281 B
/** * Detect if options are supported by the add-/removeEventListener methods * * @param recheck - Force the function to check the support again * @return Are event binding options supported or not */ export default function eventOptionsSupported(recheck?: boolean): boolean;