1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/object.getownpropertydescri.../index.js

19 lines
381 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
'use strict';
var define = require('define-properties');
2024-01-16 21:26:16 +08:00
var callBind = require('call-bind');
2023-12-18 13:12:25 +08:00
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
2024-01-16 21:26:16 +08:00
var bound = callBind(getPolyfill(), Object);
define(bound, {
2023-12-18 13:12:25 +08:00
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
2024-01-16 21:26:16 +08:00
module.exports = bound;