(string)
| 6 | // declare global: StringStream |
| 7 | |
| 8 | function splitLines(string){ return string.split(/\r?\n|\r/); }; |
| 9 | |
| 10 | function StringStream(string) { |
| 11 | this.pos = this.start = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…