doum
2025-08-21 4937c9cc69d2c771b34f83cd5c7f771628dad69d
1
2
3
4
5
6
7
8
9
10
'use strict';
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;
  }
});