Fixes lint issues in /home/yash/GitHub/dev.to/app/assets/javascripts/utilities/ - browserStoreCache.js - checkUserLoggedIn.js - createAjaxReq.js - getCurrentPage.js - getImageForLink.js - insertAfter.js - localDateTime.js - localStorageTest.js - preventDefaultAction.js Signed-off-by: Amorpheuz <mail2ypd@gmail.com>
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
'use strict';
|
|
|
|
function checkUserLoggedIn() {
|
|
const body = document.getElementsByTagName('body')[0];
|
|
if (!body) {
|
|
return false;
|
|
}
|
|
|
|
return body.getAttribute('data-user-status') === 'logged-in';
|
|
}
|