UNPKG

crnc

Version:

currency conversion and functionality for the web

9 lines 268 B
export function mockBasicStorage() { const map = new Map(); return { getItem: key => map.get(key), setItem: (key, value) => map.set(key, value), removeItem: key => map.delete(key), }; } //# sourceMappingURL=mock-basic-storage.js.map