biofriction-wp-theme/node_modules/object.getownpropertydescri.../shim.js

15 lines
381 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
'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;
};