diff --git a/src/scriptlets/set-local-storage-item.js b/src/scriptlets/set-local-storage-item.js index 236ada96..d5366646 100644 --- a/src/scriptlets/set-local-storage-item.js +++ b/src/scriptlets/set-local-storage-item.js @@ -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** * ``` diff --git a/src/scriptlets/set-session-storage-item.js b/src/scriptlets/set-session-storage-item.js index 2e21c379..db24cf1d 100644 --- a/src/scriptlets/set-session-storage-item.js +++ b/src/scriptlets/set-session-storage-item.js @@ -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** * ``` diff --git a/src/scriptlets/trusted-set-local-storage-item.js b/src/scriptlets/trusted-set-local-storage-item.js index b435a425..cf351be1 100644 --- a/src/scriptlets/trusted-set-local-storage-item.js +++ b/src/scriptlets/trusted-set-local-storage-item.js @@ -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** * ```