UNPKG

fission

Version:
16 lines (14 loc) 283 B
/* globals window */ 'use strict'; module.exports = function(me) { return function(ctx, next) { if (me != null) { return next(); } if (window.location.pathname === '/login') { return next(); } window.location = '/login'; return next(); }; };