UNPKG

view-bigimg

Version:
14 lines (13 loc) 308 B
// isPassive function isPassive () { var supportsPassiveOption = false try { addEventListener('test', null, Object.defineProperty({}, 'passive', { get: function () { supportsPassiveOption = true } })) } catch (e) {} return supportsPassiveOption } export default isPassive