Sha256: 5d8e4d6574b3f21f670066064b99925e1216529284974d9400abcd6da3216fe4
Contents?: true
Size: 437 Bytes
Versions: 46
Compression:
Stored size: 437 Bytes
Contents
"use strict"; var callable = require("../../object/valid-callable") , aFrom = require("../../array/from") , defineLength = require("../_define-length") , apply = Function.prototype.apply; module.exports = function (/* …args*/) { var fn = callable(this) , args = aFrom(arguments); return defineLength(function () { return apply.call(fn, this, args.concat(aFrom(arguments))); }, fn.length - args.length); };
Version data entries
46 entries across 46 versions & 3 rubygems