Files
wechatpay-enterprise-web/node_modules/object.values/polyfill.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

8 lines
189 B
JavaScript

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