UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

16 lines (15 loc) 327 B
export const localStorageMock = { store: {}, getItem: (key) => { return localStorageMock.store[key]; }, setItem: (key, value) => { localStorageMock.store[key] = value.toString(); }, clear: () => { localStorageMock.store = {}; }, removeItem: (key) => { delete localStorageMock.store[key]; } };