Plato on Github
Report Home
node_modules/es5-ext/function/#/spread.js
Maintainability
87.97
Lines of code
10
Difficulty
4.50
Estimated Errors
0.05
Function weight
By Complexity
By SLOC
'use strict'; var callable = require('../../object/valid-callable') , apply = Function.prototype.apply; module.exports = function () { var fn = callable(this); return function (args) { return apply.call(fn, this, args); }; };