2016-10-10 03:43:44 +02:00
|
|
|
// 26.1.9 Reflect.has(target, propertyKey)
|
2017-04-20 03:09:25 +02:00
|
|
|
var $export = require('./$.export');
|
2016-10-10 03:43:44 +02:00
|
|
|
|
|
|
|
$export($export.S, 'Reflect', {
|
|
|
|
has: function has(target, propertyKey){
|
|
|
|
return propertyKey in target;
|
|
|
|
}
|
|
|
|
});
|