()
| 10 | }; |
| 11 | |
| 12 | var log = function () { |
| 13 | log.history = log.history || []; |
| 14 | log.history.push(arguments); |
| 15 | if (this.console) { |
| 16 | console.log(Array.prototype.slice.call(arguments)[0]); |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 | // if you want to apply conditional formatting of parameter values |
| 21 | var parameterMacro = function (value) { |
no outgoing calls
no test coverage detected