├── .eslintrc ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── Makefile ├── README-zh_CN.md ├── README.md ├── bin └── detector ├── dist └── detector │ ├── 2.4.3 │ └── lib │ │ └── web-detector.js │ ├── 2.4.4 │ └── lib │ │ └── web-detector.js │ └── 2.4.5 │ └── lib │ └── web-detector.js ├── examples ├── index-zh-cn.md ├── index.md └── tests.md ├── lib ├── detector.js ├── node-detector.js ├── rules.js ├── web-detector.js └── web-rules.js ├── package.json └── tests ├── detector-spec.js └── morerule-test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/HISTORY.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/Makefile -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/README.md -------------------------------------------------------------------------------- /bin/detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/bin/detector -------------------------------------------------------------------------------- /dist/detector/2.4.3/lib/web-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/dist/detector/2.4.3/lib/web-detector.js -------------------------------------------------------------------------------- /dist/detector/2.4.4/lib/web-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/dist/detector/2.4.4/lib/web-detector.js -------------------------------------------------------------------------------- /dist/detector/2.4.5/lib/web-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/dist/detector/2.4.5/lib/web-detector.js -------------------------------------------------------------------------------- /examples/index-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/examples/index-zh-cn.md -------------------------------------------------------------------------------- /examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/examples/index.md -------------------------------------------------------------------------------- /examples/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/examples/tests.md -------------------------------------------------------------------------------- /lib/detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/lib/detector.js -------------------------------------------------------------------------------- /lib/node-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/lib/node-detector.js -------------------------------------------------------------------------------- /lib/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/lib/rules.js -------------------------------------------------------------------------------- /lib/web-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/lib/web-detector.js -------------------------------------------------------------------------------- /lib/web-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/lib/web-rules.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/package.json -------------------------------------------------------------------------------- /tests/detector-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/tests/detector-spec.js -------------------------------------------------------------------------------- /tests/morerule-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotoo/detector/HEAD/tests/morerule-test.js --------------------------------------------------------------------------------