nixos/home/ags/node_modules/object.values/polyfill.js
2025-02-27 02:26:55 +01:00

7 lines
189 B
JavaScript

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