ixstorage
v1.0.5
Published
Simple storage
Downloads
8
Readme
simple storage
import ixstorage from "ixstorage";
const storage = ixstorage("hello", "world");
storage.get(); // world
storage.set("ixstorage");
storage.get(); // ixstorage
storage.del();
storage.get(); // world
MIT