MCPcopy Index your code
hub / github.com/NikLever/ThreeJS-PathEditor / delete

Method delete

store.js:38–43  ·  view source on GitHub ↗
( key )

Source from the content-addressed store, hash-verified

36 }
37
38 delete( key ){
39 const serializedData = localStorage.getItem( Store.namespace );
40 const data = JSON.parse(serializedData);
41 delete data[key];
42 localStorage.setItem(Store.namespace, JSON.stringify(data));
43 }
44
45 getPathNames(){
46 const names = [];

Callers 1

deletePathMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected