localGetter.js 173 Bytes
Newer Older
leiqingsong's avatar
leiqingsong committed
1
export function getUserId() {
leiqingsong's avatar
leiqingsong committed
2 3 4 5 6
    if (localStorage.getItem("user")) {
        return JSON.parse(localStorage.getItem('user')).userId;
    } else {
        return "";
    }
leiqingsong's avatar
leiqingsong committed
7
}