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

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

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