hensei-web/node_modules/object.values/polyfill.js
2020-09-11 06:44:42 -07:00

7 lines
189 B
JavaScript

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Object.values === 'function' ? Object.values : implementation;
};