├── .gitignore ├── LICENSE ├── README.md ├── bin └── font-collector.js ├── index.js ├── lib ├── collector.js └── font.js ├── package.json └── test ├── .DS_Store ├── font.config.json ├── fonts ├── handfont.eot ├── handfont.svg ├── handfont.ttf └── handfont.woff ├── index.html ├── lib └── handfont.ttf └── others ├── fff.txt ├── folder ├── fl.tt └── fl.txt ├── test.txt ├── text.md └── ts.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/README.md -------------------------------------------------------------------------------- /bin/font-collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/bin/font-collector.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/index.js -------------------------------------------------------------------------------- /lib/collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/lib/collector.js -------------------------------------------------------------------------------- /lib/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/lib/font.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/package.json -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/font.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/font.config.json -------------------------------------------------------------------------------- /test/fonts/handfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/fonts/handfont.eot -------------------------------------------------------------------------------- /test/fonts/handfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/fonts/handfont.svg -------------------------------------------------------------------------------- /test/fonts/handfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/fonts/handfont.ttf -------------------------------------------------------------------------------- /test/fonts/handfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/fonts/handfont.woff -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/index.html -------------------------------------------------------------------------------- /test/lib/handfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JailBreakC/font-collector/HEAD/test/lib/handfont.ttf -------------------------------------------------------------------------------- /test/others/fff.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/others/folder/fl.tt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/others/folder/fl.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/others/test.txt: -------------------------------------------------------------------------------- 1 | 魑魅魍魉 -------------------------------------------------------------------------------- /test/others/text.md: -------------------------------------------------------------------------------- 1 | text.md -------------------------------------------------------------------------------- /test/others/ts.ts: -------------------------------------------------------------------------------- 1 | ts --------------------------------------------------------------------------------