├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── gallery.js ├── get.js └── parse.js ├── test └── index.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/package.json -------------------------------------------------------------------------------- /src/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/src/gallery.js -------------------------------------------------------------------------------- /src/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/src/get.js -------------------------------------------------------------------------------- /src/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/src/parse.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhentai-dev/API/HEAD/yarn.lock --------------------------------------------------------------------------------