frontend/.pnpm-store/v3/files/4c/5163755eafb9a1cf2c21cf53b51275f9665f98d3e72801b86ccbf4706df5b1631c5adc0594eeee74f855dc2955c7c7b8402c8d61531aae8fef1dc1f3d84fb4

10 lines
235 B
Plaintext

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