diff --git a/source b/source index 2f48189b9fb..dd562b7517e 100644 --- a/source +++ b/source @@ -99147,17 +99147,16 @@ interface Storage {
length
Returns the number of key/value pairs currently present in the list associated with the - object.
Returns the number of key/value pairs.
key
( n )Returns the name of the nth key in the list, or null if n is greater - than or equal to the number of key/value pairs in the object.
Returns the name of the nth key, or null if n is greater than or + equal to the number of key/value pairs.
getItem
( key )Returns the current value associated with the given key, or null if the given - key does not exist in the list associated with the object.
setItem
( key, value )removeItem
( key )delete
storage[key]Removes the key/value pair with the given key from the list associated with the - object, if a key/value pair with the given key exists.
+Removes the key/value pair with the given key, if a key/value pair with the given + key exists.
Dispatches a storage
event on Window
objects
holding an equivalent Storage
object.
clear
()Empties the list associated with the object of all key/value pairs, if there are any.
+Removes all key/value pairs, if there are any.
Dispatches a storage
event on Window
objects
holding an equivalent Storage
object.