setItem
setItem(key: string,value: string,storage: undefined | null | string,crypt: boolean,ttl: number,path: string): Promise<void>
Add a key/value in the specified storage
Properties
(Mandatory properties are in bold)| Properties | Type | Description |
|---|---|---|
| key | string | : key of the item |
| storage | undefined | null | string | : localStorage, sessionStorage or cookie |
| value | string | : value of the item |
Additional properties for advanced use cases
| Properties | Type | Description |
|---|---|---|
| crypt | boolean | : encrypt the value (only if cookie). Defaults to true |
| path | string | : scope of the cookie. Defaults to / |
| ttl | number | : time to live of the cookie (in seconds). If null, the cookie is removed when the browser is closed |