FLUJOS/VISUALIZACION/node_modules/object.values/polyfill.js
2025-11-07 00:06:12 +01:00

7 lines
189 B
JavaScript
Executable file

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