es6.reflect.has.js 197 B

12345678
  1. // 26.1.9 Reflect.has(target, propertyKey)
  2. var $export = require('./_export');
  3. $export($export.S, 'Reflect', {
  4. has: function has(target, propertyKey) {
  5. return propertyKey in target;
  6. }
  7. });