UNPKG

node-localstorage

Version:

A drop-in substitute for the browser native localStorage API that runs on node.js.

5 lines (4 loc) 191 B
if (typeof localStorage === "undefined" || localStorage === null) { const LocalStorage = require('node-localstorage').LocalStorage; global.localStorage = new LocalStorage('./scratch'); }