securityos/node_modules/object.hasown/shim.js

15 lines
311 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimObjectHasOwn() {
var polyfill = getPolyfill();
define(
Object,
{ hasOwn: polyfill },
{ hasOwn: function () { return Object.hasOwn !== polyfill; } }
);
return polyfill;
};