Blame view

node_modules/object.getownpropertydescriptors/polyfill.js 227 Bytes
ce4c83ff   wxy   初始提交
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;
  };