├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── binding.gyp ├── node-icu-charset-detector.cpp ├── node-icu-charset-detector.js ├── package.json ├── test └── wscript └── wscript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | build/ 3 | .lock-wscript 4 | node_modules/ 5 | deps/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/binding.gyp -------------------------------------------------------------------------------- /node-icu-charset-detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/node-icu-charset-detector.cpp -------------------------------------------------------------------------------- /node-icu-charset-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/node-icu-charset-detector.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/package.json -------------------------------------------------------------------------------- /test/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/test/wscript -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooz/node-icu-charset-detector/HEAD/wscript --------------------------------------------------------------------------------