Sha256: 8acad86a94ee0f04b5ff5b45006700d75f9cd2a2ccd8861132eedb099811664f
Contents?: true
Size: 266 Bytes
Versions: 29
Compression:
Stored size: 266 Bytes
Contents
'use strict'; var callable = require('../../object/valid-callable') , apply = Function.prototype.apply; module.exports = function (/*…args*/) { var fn = callable(this) , args = arguments; return function () { return apply.call(fn, this, args); }; };
Version data entries
29 entries across 19 versions & 7 rubygems