gitextract_re_ccba0/ ├── .commitlintrc.json ├── .eslintrc.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── node.js.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ ├── commit-msg │ └── pre-commit ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src/ │ ├── adapters/ │ │ ├── Memory.test.ts │ │ ├── Memory.ts │ │ ├── browser/ │ │ │ ├── LocalStorage.ts │ │ │ ├── SessionStorage.ts │ │ │ ├── WebStorage.test.ts │ │ │ └── WebStorage.ts │ │ └── node/ │ │ ├── DataFile.ts │ │ ├── JSONFile.test.ts │ │ ├── JSONFile.ts │ │ ├── TextFile.test.ts │ │ └── TextFile.ts │ ├── browser.ts │ ├── core/ │ │ ├── Low.test.ts │ │ └── Low.ts │ ├── examples/ │ │ ├── README.md │ │ ├── browser.ts │ │ ├── cli.ts │ │ ├── in-memory.ts │ │ └── server.ts │ ├── index.ts │ ├── node.ts │ └── presets/ │ ├── browser.ts │ └── node.ts └── tsconfig.json