esmls
v0.1.2
Published
a simple library to use localStorage
Downloads
2
Maintainers
Readme
esmLS
a simple library to use localStorage
Installation
npm install esmls
import {get, set, has, del} from "esmls";
set("isLoaded", false);
window.addEventListener("DOMContentLoaded", () => {
set("isLoaded", true);
});
document.addEventListener("click", (e)=>{
if(!get("isLoaded")){
alert("wait to load the page");
}
});