@quadible/web-sdk
Version:
The web sdk for Quadible's behavioral authentication service.
14 lines • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = getLocalStorage;
// https://bugzilla.mozilla.org/show_bug.cgi?id=781447
function getLocalStorage() {
try {
return !!window.localStorage;
}
catch (e) {
/* SecurityError when referencing it means it exists */
return true;
}
}
//# sourceMappingURL=local_storage.js.map