mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 06:55:09 +08:00
10 lines
350 B
JavaScript
10 lines
350 B
JavaScript
|
|
var FunctionPrototype = Function.prototype;
|
||
|
|
var apply = FunctionPrototype.apply;
|
||
|
|
var bind = FunctionPrototype.bind;
|
||
|
|
var call = FunctionPrototype.call;
|
||
|
|
|
||
|
|
// eslint-disable-next-line es/no-reflect -- safe
|
||
|
|
module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
|
||
|
|
return call.apply(apply, arguments);
|
||
|
|
});
|