
Some checks are pending
NPM Installation / build (16.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (16.x, windows-latest) (push) Waiting to run
NPM Installation / build (17.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (17.x, windows-latest) (push) Waiting to run
NPM Installation / build (18.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (18.x, windows-latest) (push) Waiting to run
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
export const isAutheticated = () => {
|
|
if (typeof window == 'undefined') {
|
|
return true
|
|
}
|
|
if (localStorage.getItem('authToken')) {
|
|
return localStorage.getItem('authToken')
|
|
} else {
|
|
return false
|
|
}
|
|
}
|