Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 371 Bytes

storage.md

File metadata and controls

25 lines (16 loc) · 371 Bytes

Varie provides a service that interacts with local storage.

Setting

To set something in to the storage :

this.storageService.set("token", token);

Getting

To get something in to the storage :

let token = this.storageService.get("token");

Removing

To remove something in to the storage :

this.storageService.remove("token");