yumechi-no-kuni/src/web/app/common/scripts/signout.ts

8 lines
201 B
TypeScript
Raw Normal View History

2017-03-18 06:05:11 -05:00
import CONFIG from './config';
2017-02-21 13:19:53 -06:00
2017-03-18 06:05:11 -05:00
export default () => {
2017-02-17 22:13:43 -06:00
localStorage.removeItem('me');
document.cookie = `i=; domain=.${CONFIG.host}; expires=Thu, 01 Jan 1970 00:00:01 GMT;`;
location.href = '/';
};