Нема описа
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.

loginauthlocal.js 304B

1234567891011121314
  1. const INIT_LOGIN_AUTH = 'INIT_LOGIN_AUTH';
  2. function setInitLoginLocal(){
  3. localStorage.setItem(INIT_LOGIN_AUTH,true);
  4. }
  5. function getInitLoginLocal(){
  6. return JSON.parse(localStorage.getItem(INIT_LOGIN_AUTH));
  7. }
  8. function removeInitLoginLocal(){
  9. localStorage.setItem(INIT_LOGIN_AUTH,false);
  10. }