| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | |||||
| 3 | var implementation = require('./implementation'); | ||||
| 4 | |||||
| 5 | module.exports = function getPolyfill() { | ||||
| 6 | return typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation; | ||||
| 7 | }; | ||||