Plato on Github
Report Home
node_modules/es5-ext/function/#/not.js
Maintainability
86.65
Lines of code
14
Difficulty
5.35
Estimated Errors
0.07
Function weight
By Complexity
By SLOC
'use strict'; var callable = require('../../object/valid-callable') , defineLength = require('../_define-length') , apply = Function.prototype.apply; module.exports = function () { var fn = callable(this); return defineLength(function () { return !apply.call(fn, this, arguments); }, fn.length); };