├── .gitignore ├── LICENSE ├── README.md ├── dist ├── nothing-mock.es.js ├── nothing-mock.es.js.map ├── nothing-mock.js ├── nothing-mock.js.map ├── nothing-mock.modern.js ├── nothing-mock.modern.js.map ├── nothing-mock.umd.js └── nothing-mock.umd.js.map ├── index.d.ts ├── package.json └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.log* 2 | .DS_Store 3 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/README.md -------------------------------------------------------------------------------- /dist/nothing-mock.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.es.js -------------------------------------------------------------------------------- /dist/nothing-mock.es.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.es.js.map -------------------------------------------------------------------------------- /dist/nothing-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.js -------------------------------------------------------------------------------- /dist/nothing-mock.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.js.map -------------------------------------------------------------------------------- /dist/nothing-mock.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.modern.js -------------------------------------------------------------------------------- /dist/nothing-mock.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.modern.js.map -------------------------------------------------------------------------------- /dist/nothing-mock.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.umd.js -------------------------------------------------------------------------------- /dist/nothing-mock.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/dist/nothing-mock.umd.js.map -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slmgc/Nothing/HEAD/src/index.js --------------------------------------------------------------------------------