SYMBOL INDEX (22 symbols across 12 files) FILE: benches/lines.ts function runBenchmark (line 13) | async function runBenchmark(name: string, text: string) { function main (line 68) | async function main() { FILE: benches/words.ts function runBenchmark (line 17) | async function runBenchmark(name: string, text: string) { function main (line 71) | async function main() { FILE: src/index.ts constant CHINESE_MAX_CODE_POINT (line 3) | const CHINESE_MAX_CODE_POINT = 205743; constant CHINESE_MIN_CODE_POINT (line 4) | const CHINESE_MIN_CODE_POINT = 11904; constant BYTE_SIZE (line 5) | const BYTE_SIZE = 8; constant BITMAP (line 13) | const BITMAP = new Uint8Array(CHINESE_MAX_CODE_POINT / BYTE_SIZE + 1); function insertCharsIntoMap (line 15) | function insertCharsIntoMap(...chars: string[]) { function insertRangeIntoMap (line 24) | function insertRangeIntoMap(from: number, to: number) { constant NEWLINE (line 30) | const NEWLINE = "\n"; function countWords (line 54) | function countWords(str: string) { function countLines (line 76) | function countLines(str: string) { FILE: src/languages/burmese.ts constant BURMESE_UNICODE_RANGE (line 5) | const BURMESE_UNICODE_RANGE: UnicodeRange = [[4096, 4255]]; FILE: src/languages/cjk.ts constant CJK_UNICODE_RANGES (line 3) | const CJK_UNICODE_RANGES: UnicodeRange = [ FILE: src/languages/index.ts constant UNICODE_RANGES (line 10) | const UNICODE_RANGES: UnicodeRange = [ FILE: src/languages/javanese.ts constant JAVANESE_UNICODE_RANGE (line 5) | const JAVANESE_UNICODE_RANGE: UnicodeRange = [[43392, 43487]]; FILE: src/languages/khmer.ts constant KHMER_UNICODE_RANGE (line 5) | const KHMER_UNICODE_RANGE: UnicodeRange = [[6016, 6143]]; FILE: src/languages/lao.ts constant LAO_UNICODE_RANGE (line 5) | const LAO_UNICODE_RANGE: UnicodeRange = [[3712, 3839]]; FILE: src/languages/thai.ts constant THAI_UNICODE_RANGE (line 5) | const THAI_UNICODE_RANGE: UnicodeRange = [[3584, 3711]]; FILE: src/languages/vai.ts constant VAI_UNICODE_RANGE (line 5) | const VAI_UNICODE_RANGE: UnicodeRange = [[42240, 42559]]; FILE: src/types.ts type UnicodeRange (line 1) | type UnicodeRange = number[][];