├── .github └── workflows │ └── ci-module.yml ├── .gitignore ├── API.md ├── LICENSE.md ├── README.md ├── lib ├── client.js ├── index.d.ts ├── index.js ├── pending.js └── policy.js ├── package.json └── test ├── client.js ├── connection.js ├── esm.js ├── index.js ├── index.ts └── policy.js /.github/workflows/ci-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/.github/workflows/ci-module.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/README.md -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/lib/pending.js -------------------------------------------------------------------------------- /lib/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/lib/policy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/package.json -------------------------------------------------------------------------------- /test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/client.js -------------------------------------------------------------------------------- /test/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/connection.js -------------------------------------------------------------------------------- /test/esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/esm.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/index.js -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapijs/catbox/HEAD/test/policy.js --------------------------------------------------------------------------------