├── .eslintrc.yml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── utils.js ├── woff2_compress.js └── woff2_decompress.js ├── compress.js ├── decompress.js ├── index.js ├── package.json ├── src ├── Dockerfile ├── Makefile ├── README.md ├── compress_binding.cc └── decompress_binding.cc └── test ├── .eslintrc.yml ├── bin-utils.js ├── fixtures ├── sample.ttf ├── sample_compressed.woff2 └── sample_decompressed.ttf └── test.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.bc 3 | 4 | /node_modules 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/README.md -------------------------------------------------------------------------------- /bin/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/bin/utils.js -------------------------------------------------------------------------------- /bin/woff2_compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/bin/woff2_compress.js -------------------------------------------------------------------------------- /bin/woff2_decompress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/bin/woff2_decompress.js -------------------------------------------------------------------------------- /compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/compress.js -------------------------------------------------------------------------------- /decompress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/decompress.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/package.json -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/src/README.md -------------------------------------------------------------------------------- /src/compress_binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/src/compress_binding.cc -------------------------------------------------------------------------------- /src/decompress_binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/src/decompress_binding.cc -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | -------------------------------------------------------------------------------- /test/bin-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/test/bin-utils.js -------------------------------------------------------------------------------- /test/fixtures/sample.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/test/fixtures/sample.ttf -------------------------------------------------------------------------------- /test/fixtures/sample_compressed.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/test/fixtures/sample_compressed.woff2 -------------------------------------------------------------------------------- /test/fixtures/sample_decompressed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/test/fixtures/sample_decompressed.ttf -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fontello/wawoff2/HEAD/test/test.js --------------------------------------------------------------------------------