(func)
| 33 | } |
| 34 | |
| 35 | function async(func) { |
| 36 | var that = this; |
| 37 | setTimeout(function () { func.call(that); }, 0); |
| 38 | } |
| 39 | |
| 40 | function escapeText(text) { |
| 41 | return String(text).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"'); |
no outgoing calls
no test coverage detected