mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
var $ = require('../internals/export');
|
|
|
|
// `Reflect.has` method
|
|
// https://tc39.es/ecma262/#sec-reflect.has
|
|
$({ target: 'Reflect', stat: true }, {
|
|
has: function has(target, propertyKey) {
|
|
return propertyKey in target;
|
|
}
|
|
});
|