@azure/msal-browser
Version:
Microsoft Authentication Library for js
44 lines (41 loc) • 1.75 kB
JavaScript
/*! @azure/msal-browser v2.28.1 2022-08-01 */
;
import { BrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.js';
import { BrowserCacheLocation } from '../utils/BrowserConstants.js';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
var BrowserStorage = /** @class */ (function () {
function BrowserStorage(cacheLocation) {
this.validateWindowStorage(cacheLocation);
this.windowStorage = window[cacheLocation];
}
BrowserStorage.prototype.validateWindowStorage = function (cacheLocation) {
if (cacheLocation !== BrowserCacheLocation.LocalStorage && cacheLocation !== BrowserCacheLocation.SessionStorage) {
throw BrowserConfigurationAuthError.createStorageNotSupportedError(cacheLocation);
}
var storageSupported = !!window[cacheLocation];
if (!storageSupported) {
throw BrowserConfigurationAuthError.createStorageNotSupportedError(cacheLocation);
}
};
BrowserStorage.prototype.getItem = function (key) {
return this.windowStorage.getItem(key);
};
BrowserStorage.prototype.setItem = function (key, value) {
this.windowStorage.setItem(key, value);
};
BrowserStorage.prototype.removeItem = function (key) {
this.windowStorage.removeItem(key);
};
BrowserStorage.prototype.getKeys = function () {
return Object.keys(this.windowStorage);
};
BrowserStorage.prototype.containsKey = function (key) {
return this.windowStorage.hasOwnProperty(key);
};
return BrowserStorage;
}());
export { BrowserStorage };
//# sourceMappingURL=BrowserStorage.js.map