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