UNPKG

moebius

Version:

Command-Line tool to find and download comics (As well as NodeJS module)

11 lines (9 loc) 211 B
'use strict'; let storage = { set: function set(key, object) { localStorage.setItem(key, JSON.stringify(object)); }, get: function get(key) { return JSON.parse(localStorage.getItem(key)); }, };