UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

13 lines 361 B
module.exports = function (app) { return { setup: function () { app.use(function (req, res, next) { if (req.query.lang) { req.session.lang = req.query.lang; } req.languageSetting = req.session.lang; next(); }) } }; };