Skip to content

Commit

Permalink
improve description for storage-related scriptlets
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-atr committed Nov 9, 2022
1 parent f0e56ca commit dbe58d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/scriptlets/set-local-storage-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
*
* @description
* Adds specified key and its value to localStorage object, or updates the value of the key if it already exists.
* Scriptlet won't set item if storage is full.
*
* **Syntax**
* ```
Expand Down
1 change: 1 addition & 0 deletions src/scriptlets/set-session-storage-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
*
* @description
* Adds specified key and its value to sessionStorage object, or updates the value of the key if it already exists.
* Scriptlet won't set item if storage is full.
*
* **Syntax**
* ```
Expand Down
1 change: 1 addition & 0 deletions src/scriptlets/trusted-set-local-storage-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
*
* @description
* Adds item with arbitrary key and value to localStorage object, or updates the value of the key if it already exists.
* Scriptlet won't set item if storage is full.
*
* **Syntax**
* ```
Expand Down

0 comments on commit dbe58d1

Please sign in to comment.