├── .babelrc ├── .codecov.yml ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── __tests__ ├── lru.test.ts └── tlru.test.ts ├── azure-pipelines.yml ├── package.json ├── renovate.json ├── src └── index.ts ├── tsconfig.eslint.json └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/.babelrc -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/lru.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/__tests__/lru.test.ts -------------------------------------------------------------------------------- /__tests__/tlru.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/__tests__/tlru.test.ts -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinovyatkin/tlru/HEAD/tsconfig.json --------------------------------------------------------------------------------