frontend/.pnpm-store/v3/files/04/1ea8c636347108345b08bdd245e0d0e1a8df6a0786ba8cabfbbb7a98e5da6fcf88644b0aaf23ce029c37df651eb80e6ef6a9a65ca28887063ed6da637de124

11 lines
262 B
Plaintext

"use strict";
var callable = require("../../object/valid-callable")
, apply = Function.prototype.apply;
module.exports = function (/* …args*/) {
var fn = callable(this), args = arguments;
return function () { return apply.call(fn, this, args); };
};