├── .deepsource.toml ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── cache.js ├── jest.config.js ├── package.json ├── rollup.config.js └── tests └── cache.spec.js /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | tests/ 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/README.md -------------------------------------------------------------------------------- /cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/cache.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/rollup.config.js -------------------------------------------------------------------------------- /tests/cache.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQarroum/timed-cache/HEAD/tests/cache.spec.js --------------------------------------------------------------------------------