(s)
| 17 | |
| 18 | |
| 19 | var xxx = function xxx(s) { // internal dev/debug logging |
| 20 | var args = ['XX' + 'X: '+s].concat( |
| 21 | Array.prototype.slice.call(arguments, 1)); |
| 22 | console.error.apply(this, args); |
| 23 | }; |
| 24 | var xxx = function xxx() {}; // comment out to turn on debug logging |
| 25 | |
| 26 |