• File: polyfill.js
  • Full Path: /var/www/sandbox/node_modules/object.values/polyfill.js
  • Date Modified: 02/20/2025 6:18 PM
  • File size: 189 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

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

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