mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
'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
|
|
});
|