amis-rpc-design/node_modules/core-js/modules/es.object.has-own.js

10 lines
241 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'use strict';
var $ = require('../internals/export');
var hasOwn = require('../internals/has-own-property');
// `Object.hasOwn` method
// https://tc39.es/ecma262/#sec-object.hasown
$({ target: 'Object', stat: true }, {
hasOwn: hasOwn
});