init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

15
node_modules/fp-ts-local-storage/README.md generated vendored Normal file
View File

@@ -0,0 +1,15 @@
[fp-ts](https://github.com/gcanti/fp-ts) bindings for LocalStorage
# Documentation
- [API Reference](https://gcanti.github.io/fp-ts-local-storage)
# Example
```ts
import { setItem, getItem } from 'fp-ts-local-storage'
const program = setItem('foo', JSON.stringify({ bar: 'baz' })).chain(() => getItem('foo'))
console.log(program.run()) // => some('{"bar":"baz"}')
```