From 1da26ebd01647028bd750a2e77f4145d1abefd48 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 6 Aug 2025 13:52:50 -0600 Subject: [PATCH] Add info on null value storage behavior --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ed457f4..9513e1f 100644 --- a/README.md +++ b/README.md @@ -190,6 +190,9 @@ asynchronous and return a Promise. String values are stored and fetched as-is; all other datatypes are encoded to JSON before saving, and decoded back when fetched. +Storing a value of `null` causes the key to be deleted. Fetching a key that doesn't exist without +specifying a default value returns `null`. + Behavior if the host machine is out of disk space or has a drive failure is undefined. `global.apis.storage.`: