This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
v0.0.4
Pre-release
Pre-release
CHANGELOG
- Added to
overlay
tostores/shared/overlay
for similar functionality asderived
, but providing a second callback to handleWritable
Svelte Stores - Added
make_memory_storage
toutil/shared/browser
, which makes an in-memory version of Web Storage API for use withstorage
- Updated
is_readable
/is_writable
to work as TypeScript Type Guards - Updated
immutable
,schema
to utilizederived
andoverlay
- Updated
tsconfig.json
to fix TypeScript Compiler output not working via CommonJSrequire
- Intent to deprecate
immutable_readable
/immutable_writable
, useimmutable
instead- The two functions were separate at the time, ONLY due to the
overlay
function not existing - Both
immutable_readable
/immutable_writable
are now aliases ofimmutable
- IMPORTANT NOTE:
immutable
defaults to aWritable
Store if you pass in a non-Store value, unlikeimmutable_readable
which defaults toReadable
- The two functions were separate at the time, ONLY due to the