pure

Results 1 comments of pure

> ```js > function add() { > let args = [].slice.call(arguments); > let fn = function(){ > let fn_args = [].slice.call(arguments) > return add.apply(null,args.concat(fn_args)) > } > fn.toString = function(){...