Sha256: bd319b4e6d51ced8f56cbc8ccf81e0ec907bf4d42638b324be2a42d7c506872d
Contents?: true
Size: 268 Bytes
Versions: 46
Compression:
Stored size: 268 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
46 entries across 46 versions & 3 rubygems