Files
setup-haskell/node_modules/object.getownpropertydescriptors/shim.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

15 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;
};