Saltar al contenido principal

Function: LocalStorageStrategy()

LocalStorageStrategy(storage?): StorageStrategy

Defined in: src/infrastructure/storage/storage.service.ts:113

Creates a strategy backed by window.localStorage.

Parameters

storage?

Storage

Optional storage instance (defaults to window.localStorage).

Returns

StorageStrategy

A StorageStrategy.

Example

const strategy = LocalStorageStrategy();
strategy.useSetItem("token", "abc123");