(skipEmptyEntries: boolean = false)
| 39 | public chunks!: string[]; |
| 40 | |
| 41 | public finish(skipEmptyEntries: boolean = false): void { |
| 42 | this.chunks = []; |
| 43 | this._parse(this.text, 0, this.chunks, skipEmptyEntries); |
| 44 | } |
| 45 | |
| 46 | private _parse(str: string, p: number, _chunks: string[], skipEmptyEntries: boolean): void { |
| 47 | if (!str) { |