phodal/freerice

View on GitHub
web/js/lib/Logout.js

Summary

Maintainability
A
0 mins
Test Coverage
define([
    'jquery',
    'underscore',
    'mustache',
    'js/lib/User',
    'js/lib/UserSession'
],function($, _, Mustache, User, UserSession){
    'use strict';
    var Logout = function(){

    };

    Logout.prototype.logout = function(){
        UserSession.remove();
    };

    return Logout;
});