setup-node/node_modules/object.getownpropertydescriptors/shim.js
eric sciple e7ed525da5 .
2020-01-24 16:30:50 -05:00

14 lines
381 B
JavaScript

'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimGetOwnPropertyDescriptors() {
var polyfill = getPolyfill();
define(
Object,
{ getOwnPropertyDescriptors: polyfill },
{ getOwnPropertyDescriptors: function () { return Object.getOwnPropertyDescriptors !== polyfill; } }
);
return polyfill;
};