Version 1
[yaffs-website] / node_modules / core-js / modules / _strict-method.js
1 var fails = require('./_fails');
2
3 module.exports = function(method, arg){
4   return !!method && fails(function(){
5     arg ? method.call(null, function(){}, 1) : method.call(null);
6   });
7 };