4065b40048e9015b8a04962d64221195fcd4917981c9b642079e00184d8c9441a6ae1a69b2cf578f2bc64ccf441001324d94fddb20ca3fea45604c329234a4 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. });