yet-another-storage-package
v1.0.0
Published
YASP is a package for storing data.
Readme
YASP (Yet Another Storage Package)
YASP is a package for storing data.
import YASP from "yet-another-storage-package"
const myYASP = new YASP<number>()
myYASP.addValue("a", 20)
.addValue("b", 25)
.addValue("c", 30)
myYASP.getValue("a") // 20Files made with tsc.
