UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

67 lines (59 loc) 1.26 kB
import * as PropertySymbol from '../PropertySymbol.js'; /** * Storage. * * @see https://developer.mozilla.org/en-US/docs/Web/API/Storage */ export default class Storage { public [PropertySymbol.data]: { [key: string]: string } = {}; /** * Returns length. * * @returns Length. */ public get length(): number { return Object.keys(this[PropertySymbol.data]).length; } /** * Returns name of the nth key. * * @param index Index. * @returns Name. */ public key(index: number): string | null { const name = Object.keys(this[PropertySymbol.data])[index]; return name !== undefined ? name : null; } /** * Sets item. * * @param name Name. * @param item Item. */ public setItem(name: string, item: string): void { this[PropertySymbol.data][name] = String(item); } /** * Returns item. * * @param name Name. * @returns Item. */ public getItem(name: string): string | null { return this[PropertySymbol.data][name] !== undefined ? this[PropertySymbol.data][name] : null; } /** * Removes item. * * @param name Name. */ public removeItem(name: string): void { delete this[PropertySymbol.data][name]; } /** * Clears storage. */ public clear(): void { this[PropertySymbol.data] = {}; } }