Source code

Revision control

Copy as Markdown

Other Tools

/**
* Any copyright is dedicated to the Public Domain.
*/
export const LocalStorageUtils = {
createStorage(principal) {
return Services.domStorageManager.createStorage(
null,
principal,
principal,
""
);
},
};