blob: 0424acfb1c862f6303892b4b8f87ec989bbd4024 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var implementation = require('./implementation');
4
5module.exports = function getPolyfill() {
6 return typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation;
7};