_strict-method.js 187 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 var fails = require('./_fails'); module.exports = function(method, arg){ return !!method && fails(function(){ arg ? method.call(null, function(){}, 1) : method.call(null); }); };