UNPKG

gm-storage

Version:

An ES6 Map wrapper for the synchronous userscript storage API

11 lines (8 loc) 267 B
/* gm-storage 4.1.1. @copyright 2020 chocolateboy. @license MIT */ import { GMStorageBase } from './gm-storage-base.mjs'; const identity = (value) => value; class GMStorage extends GMStorageBase { parse = identity; stringify = identity; } export { GMStorage };