UNPKG

core-js

Version:
8 lines (7 loc) 228 B
// `Reflect.has` method // https://tc39.github.io/ecma262/#sec-reflect.has require('../internals/export')({ target: 'Reflect', stat: true }, { has: function has(target, propertyKey) { return propertyKey in target; } });