blob: 13e0e79d4edbf0c004856e9b7d116218bb2cc2c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { deleteCookie, getCookie, setCookie } from 'cookies-next'
const getAuth = () => {
let auth = getCookie('auth')
if (auth) {
return JSON.parse(auth)
}
return false
}
const setAuth = (user) => {
setCookie('auth', JSON.stringify(user))
return true
}
const deleteAuth = () => {
deleteCookie('auth')
return true
}
export { getAuth, setAuth, deleteAuth }
|