1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

🧊 Renamed inner value variable to val

This commit is contained in:
Steffo 2021-05-23 18:25:17 +02:00
parent 1be5584de9
commit a11c1a16a3
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -35,10 +35,10 @@ export default function useLocalStorageState(key, def) {
* Save a value to the {@link localStorage}. * Save a value to the {@link localStorage}.
*/ */
const save = useCallback( const save = useCallback(
(value) => { val => {
if(localStorage) { if(localStorage) {
console.debug(`Saving ${key} to localStorage...`) console.debug(`Saving ${key} to localStorage...`)
localStorage.setItem(key, JSON.stringify(value)) localStorage.setItem(key, JSON.stringify(val))
} }
else { else {
console.warn(`Can't save ${key}; localStorage doesn't seem to be available...`) console.warn(`Can't save ${key}; localStorage doesn't seem to be available...`)
@ -51,9 +51,9 @@ export default function useLocalStorageState(key, def) {
* Set `value` and save it to the {@link localStorage}. * Set `value` and save it to the {@link localStorage}.
*/ */
const setAndSave = useCallback( const setAndSave = useCallback(
(value) => { val => {
setValue(value) setValue(val)
save(value) save(val)
}, },
[save], [save],
) )