Sha256: 0e313b35be0864cc4d9c3472a7925ac75064dfba10a026630f3d4ca4d268e82e
Contents?: true
Size: 436 Bytes
Versions: 29
Compression:
Stored size: 436 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
29 entries across 19 versions & 7 rubygems