Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com> Co-authored-by: Lawrence S <lboogie@Lawrences-Air.attlocal.net> Co-authored-by: Rajat Talesra <rajat@forem.com>
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
export function checkUserLoggedIn() {
|
|
const { body } = document;
|
|
if (!body) {
|
|
return false;
|
|
}
|
|
|
|
return body.getAttribute('data-user-status') === 'logged-in';
|
|
}
|