securityos/node_modules/object.hasown/index.js

19 lines
388 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
var define = require('define-properties');
var callBind = require('call-bind');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var polyfill = callBind(getPolyfill(), null);
define(polyfill, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = polyfill;