mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-10 16:26:43 -05:00
12 lines
369 B
JavaScript
12 lines
369 B
JavaScript
var NATIVE_BIND = require('../internals/function-bind-native');
|
|
|
|
var FunctionPrototype = Function.prototype;
|
|
var call = FunctionPrototype.call;
|
|
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
|
|
module.exports = function (fn) {
|
|
return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
|
|
return call.apply(fn, arguments);
|
|
};
|
|
};
|