MCPcopy Create free account
hub / github.com/Vishal-raj-1/Awesome-JavaScript-Projects / getLocalStorage

Function getLocalStorage

assets/js/localstorage.js:148–152  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

146}
147
148function getLocalStorage() {
149 return localStorage.getItem("list")
150 ? JSON.parse(localStorage.getItem("list"))
151 : [];
152}
153
154function removeFromLocalStorage(id) {
155 let items = getLocalStorage();

Callers 4

addToLocalStorageFunction · 0.85
removeFromLocalStorageFunction · 0.85
editLocalStorageFunction · 0.85
setupItemsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected