3 var callable = require('../../object/valid-callable')
4 , defineLength = require('../_define-length')
6 , apply = Function.prototype.apply;
8 module.exports = function () {
9 var fn = callable(this);
11 return defineLength(function () {
12 return !apply.call(fn, this, arguments);