Internet_prog/2 лаба/node_modules/object.values/polyfill.js
2023-10-24 12:26:58 +04:00

8 lines
189 B
JavaScript

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