You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
318 B

3 months ago
  1. import { SESSIONSTORAGE_TOKEN_KEY } from './constant'
  2. export function getToken() {
  3. return sessionStorage[SESSIONSTORAGE_TOKEN_KEY]
  4. }
  5. export function setToken(token: string) {
  6. sessionStorage[SESSIONSTORAGE_TOKEN_KEY] = token
  7. }
  8. export function delToken() {
  9. sessionStorage.removeItem(SESSIONSTORAGE_TOKEN_KEY)
  10. }