├── .gitignore ├── LICENSE ├── README.md ├── docs ├── README.md ├── assets │ └── img │ │ └── qrcode.png └── example.html ├── gulpfile.js ├── package.json ├── whatdevice.js └── whatdevice.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Git 忽略文件 2 | Thumbs.db 3 | .DS_Store 4 | *.swp 5 | 6 | /.idea/ 7 | 8 | /node_modules/ 9 | package-lock.json 10 | npm-debug.log* 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/img/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/docs/assets/img/qrcode.png -------------------------------------------------------------------------------- /docs/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/docs/example.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/package.json -------------------------------------------------------------------------------- /whatdevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/whatdevice.js -------------------------------------------------------------------------------- /whatdevice.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyumin/whatdevice/HEAD/whatdevice.min.js --------------------------------------------------------------------------------