UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

19 lines 561 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LocalStorageUtils = void 0; class LocalStorageUtils { getItem(key) { return window.localStorage.getItem(key); } setItem(key, value) { window.localStorage.setItem(key, value); } getSessionItem(key) { return window.sessionStorage.getItem(key); } setSessionItem(key, value) { window.sessionStorage.setItem(key, value); } } exports.LocalStorageUtils = LocalStorageUtils; //# sourceMappingURL=LocalStorageUtils.js.map