UNPKG

tiny-shelf

Version:

tiny-shelf is a lightweight and easy-to-use browser storage manager. It provides a unified API for localStorage and sessionStorage, supports automatic expiration (expires)

6 lines 162 B
type TinyShelf = { set: (key: string, value: object, options: object) => {}, get: (key: string) => {}, remove: (key: string) => {}, clear: () => {} }