| OLD | NEW |
| 1 ;(function() { | 1 ;(function() { |
| 2 | 2 |
| 3 var console = {} | 3 var console = {} |
| 4 , files = __TESTS__; | 4 , files = __TESTS__; |
| 5 | 5 |
| 6 console.log = function(text) { | 6 console.log = function(text) { |
| 7 var args = Array.prototype.slice.call(arguments, 1) | 7 var args = Array.prototype.slice.call(arguments, 1) |
| 8 , i = 0; | 8 , i = 0; |
| 9 | 9 |
| 10 text = text.replace(/%\w/g, function() { | 10 text = text.replace(/%\w/g, function() { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&') | 53 .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&') |
| 54 .replace(/</g, '<') | 54 .replace(/</g, '<') |
| 55 .replace(/>/g, '>') | 55 .replace(/>/g, '>') |
| 56 .replace(/"/g, '"') | 56 .replace(/"/g, '"') |
| 57 .replace(/'/g, '''); | 57 .replace(/'/g, '''); |
| 58 } | 58 } |
| 59 | 59 |
| 60 (__MAIN__)(); | 60 (__MAIN__)(); |
| 61 | 61 |
| 62 }).call(this); | 62 }).call(this); |
| OLD | NEW |