forked from ard/ruoyi-api

zhangnaisong
2023-06-26 3af79ca14c6790617d0a1f48aabadb97a341f17f
1
2
3
4
5
6
7
'use strict';
 
var implementation = require('./implementation');
 
module.exports = function getPolyfill() {
    return typeof Object.values === 'function' ? Object.values : implementation;
};