📄 polyfill.js
/home/palash/git/site/node_modules/object.values/polyfill.js
Language: js • Lines: 7
'use strict';

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

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