@agderposten/user-functions
v1.3.6
Published
Easy access to AGM user functions. You probably need `@babel/polyfill` for this to work.
Downloads
57
Readme
User functions
Easy access to AGM user functions. You probably need @babel/polyfill
for this to work.
Fetch user information
import fetchUser from '@agderposten/user-functions';
fetchUser().then((user) => {
console.log(user.isLoggedIn); // > true|false
});
import fetchUser from '@agderposten/user-functions';
const token = 'token';
fetchUser(token).then((user) => {
console.log(user.isLoggedIn); // > true|false
});