gitextract_ur_7czr5/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ ├── PULL_REQUEST_TEMPLATE │ └── workflows/ │ └── test.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin/ │ └── ttf2woff2.js ├── binding.gyp ├── csrc/ │ ├── addon.cc │ ├── enc/ │ │ ├── backward_references.cc │ │ ├── backward_references.h │ │ ├── bit_cost.h │ │ ├── block_splitter.cc │ │ ├── block_splitter.h │ │ ├── brotli_bit_stream.cc │ │ ├── brotli_bit_stream.h │ │ ├── cluster.h │ │ ├── command.h │ │ ├── context.h │ │ ├── dictionary.h │ │ ├── dictionary_hash.h │ │ ├── encode.cc │ │ ├── encode.h │ │ ├── encode_parallel.cc │ │ ├── encode_parallel.h │ │ ├── entropy_encode.cc │ │ ├── entropy_encode.h │ │ ├── fast_log.h │ │ ├── find_match_length.h │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── literal_cost.cc │ │ ├── literal_cost.h │ │ ├── metablock.cc │ │ ├── metablock.h │ │ ├── port.h │ │ ├── prefix.h │ │ ├── ringbuffer.h │ │ ├── static_dict.h │ │ ├── streams.cc │ │ ├── streams.h │ │ ├── streams.h.gch │ │ ├── transform.h │ │ └── write_bits.h │ ├── fallback.cc │ └── woff2/ │ ├── buffer.h │ ├── font.cc │ ├── font.h │ ├── glyph.cc │ ├── glyph.h │ ├── normalize.cc │ ├── normalize.h │ ├── port.h │ ├── round.h │ ├── store_bytes.h │ ├── table_tags.cc │ ├── table_tags.h │ ├── transform.cc │ ├── transform.h │ ├── variable_length.cc │ ├── variable_length.h │ ├── woff2_common.cc │ ├── woff2_common.h │ ├── woff2_dec.cc │ ├── woff2_dec.h │ ├── woff2_enc.cc │ └── woff2_enc.h ├── eslint.config.js ├── install/ │ └── try-build.js ├── jssrc/ │ ├── index.js │ ├── post.js │ ├── ttf2woff2.cjs │ └── ttf2woff2.wasm ├── package.json ├── src/ │ ├── cli.test.ts │ ├── index.ts │ └── tests.test.ts └── tsconfig.json