_strict-method.js 187 B

1234567
  1. var fails = require('./_fails');
  2. module.exports = function(method, arg){
  3. return !!method && fails(function(){
  4. arg ? method.call(null, function(){}, 1) : method.call(null);
  5. });
  6. };