mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 09:39:35 +02:00
18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
angular.module('localStorage', []).value('localStorage', localStorage)
|
|
|
|
/*
|
|
localStorage can throw browser exceptions, for example if it is full
|
|
We don't use localStorage for anything critical, on in that case just
|
|
fail gracefully.
|
|
*/
|
|
function localStorage(...args) {
|
|
try {
|
|
return $.localStorage(...args)
|
|
} catch (e) {
|
|
console.error('localStorage exception', e)
|
|
return null
|
|
}
|
|
}
|
|
|
|
export default localStorage
|