├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test └── index.js └── testdata ├── FZZJ-ZSXKJW.ttf ├── MaterialIcons-Regular.ttf ├── OpenSans.ttf ├── PadaukBook-Regular.ttf ├── Roboto-400.woff2 ├── RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf ├── SourceHanSerifCN-SemiBold.otf ├── emoji.ttf └── k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /coverage/ 3 | /.nyc_output/ 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/test/index.js -------------------------------------------------------------------------------- /testdata/FZZJ-ZSXKJW.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/FZZJ-ZSXKJW.ttf -------------------------------------------------------------------------------- /testdata/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /testdata/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/OpenSans.ttf -------------------------------------------------------------------------------- /testdata/PadaukBook-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/PadaukBook-Regular.ttf -------------------------------------------------------------------------------- /testdata/Roboto-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/Roboto-400.woff2 -------------------------------------------------------------------------------- /testdata/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf -------------------------------------------------------------------------------- /testdata/SourceHanSerifCN-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/SourceHanSerifCN-SemiBold.otf -------------------------------------------------------------------------------- /testdata/emoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/emoji.ttf -------------------------------------------------------------------------------- /testdata/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papandreou/subset-font/HEAD/testdata/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff --------------------------------------------------------------------------------