frontend/.pnpm-store/v3/files/12/d3b4a5f54e964a7475617ddb4bb391af73708af47031bb5dda0bb1f510f194c4689678a911d76ce5a58fa1531e15e245d873d1de0dc19a4496ae280549b33d

13 lines
398 B
Plaintext

"use strict";
var ensurePlainFunction = require("../../object/ensure-plain-function")
, defineLength = require("../_define-length")
, nextTick = require("next-tick");
var apply = Function.prototype.apply;
module.exports = function () {
var src = ensurePlainFunction(this);
return defineLength(function () { nextTick(apply.bind(src, this, arguments)); }, this.length);
};