summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/object.getownpropertydescriptors/polyfill.js
blob: 0424acfb1c862f6303892b4b8f87ec989bbd4024 (plain)
1
2
3
4
5
6
7
'use strict';

var implementation = require('./implementation');

module.exports = function getPolyfill() {
	return typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation;
};