You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
811 B
39 lines
811 B
function getLocalStorage(key) { |
|
try { |
|
return localStorage.getItem(key); |
|
} catch (e) { |
|
} |
|
return null; |
|
} |
|
|
|
function setLocalStorage(key, value) { |
|
try { |
|
if (value !== "" && value !== null) { |
|
localStorage.setItem(key, value); |
|
} else { |
|
localStorage.removeItem(key); |
|
} |
|
return true; |
|
} catch (e) {} |
|
return false; |
|
} |
|
|
|
function clearLocalStorage(key) { |
|
localStorage.removeItem(key); |
|
} |
|
|
|
function jumpToBottom(id) { |
|
const div = document.querySelector(id); |
|
div.scrollTo({ |
|
top: div.scrollHeight,// - div.clientHeight, |
|
left: 0, |
|
behavior: 'smooth' |
|
}); |
|
} |
|
|
|
function uuidv4() { |
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { |
|
const r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); |
|
return v.toString(16); |
|
}); |
|
} |