Skip to content

LocalStorage

Save data to localStorage

import { localStorageGet, localStorageSet } from './source/Addons/localstorage.js';

Set

Saves one value with a specified name. Returns value

localStorageSet(name,value)
Parameters Type Description Default Value
name string The name of the value -
value all types The value to be saved -

Get

Gets the value from the specified name. Returns false if it doesnt exist if it exists returns value

localStorageGet(name)
Parameters Type Description Default Value
name string The name of the value -