projecte_ionic/node_modules/core-js/modules/es.reflect.has.js
2022-02-09 18:30:03 +01:00

10 lines
233 B
JavaScript
Executable file

var $ = require('../internals/export');
// `Reflect.has` method
// https://tc39.es/ecma262/#sec-reflect.has
$({ target: 'Reflect', stat: true }, {
has: function has(target, propertyKey) {
return propertyKey in target;
}
});