UNPKG

227 BJavaScriptView Raw
1'use strict';
2
3var implementation = require('./implementation');
4
5module.exports = function getPolyfill() {
6 return typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation;
7};