├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── benchmark.js ├── eslint.config.js ├── example.js ├── index.d.ts ├── index.js ├── index.test-d.ts ├── package.json ├── symbol.js └── test.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | CLAUDE.md 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/benchmark.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('neostandard')({ 4 | ts: true 5 | }) 6 | -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/example.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/package.json -------------------------------------------------------------------------------- /symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/symbol.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/single-user-cache/HEAD/test.js --------------------------------------------------------------------------------