FLUJOS/BACK_BACK/node_modules/object.getownpropertydescriptors/polyfill.js
2025-11-07 00:06:12 +01:00

7 lines
227 B
JavaScript
Executable file

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation;
};