README
Appsoma Cache Widget
The welder cache widget, using local storage
Contents
How to use
var cache = require("appsoma-cache");
cache.set(key,value);
console.log(cache.get(key,default_value));
cache.remove(key);
The welder cache widget, using local storage
<script type="module">
import appsomaCache from 'https://cdn.skypack.dev/appsoma-cache';
</script>
The welder cache widget, using local storage
var cache = require("appsoma-cache");
cache.set(key,value);
console.log(cache.get(key,default_value));
cache.remove(key);