frontend/.pnpm-store/v3/files/fd/9e984e49376085bac4595d9e47c4010673ef69a8b6cab2e22142f95c44b9ca5690146ea8a772a4dc37d054811e86484ebb5a81a6352a153531ae133ae74c4b

12 lines
319 B
Plaintext

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