(args)
| 25 | noop.end = function(){}; |
| 26 | |
| 27 | var contract = function(args){ |
| 28 | if(contract.debug===true){ |
| 29 | contract.fulfilled = false; |
| 30 | contract.args = _.toArray(args); |
| 31 | contract.checkedParams = []; |
| 32 | return contract; |
| 33 | }else{ |
| 34 | return noop; |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | contract.params = function(){ |
| 39 | var i, len; |
no outgoing calls
no test coverage detected