summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.reflect.has.js
blob: 65c9e82ffe6caf43443fab980ec360bbf95f09ad (plain)
1
2
3
4
5
6
7
8
// 26.1.9 Reflect.has(target, propertyKey)
var $export = require('./$.export');

$export($export.S, 'Reflect', {
  has: function has(target, propertyKey){
    return propertyKey in target;
  }
});