UNPKG

mock-webstorage

Version:

A mock WebStorage class for mocking localStorage and sessionStorage objects in tests.

9 lines (8 loc) 212 B
export default class MockStorage { length: number; key(i: number): string | null; getItem(k: string): string | null; setItem(k: string, v: string): void; removeItem(k: string): void; clear(): void; }