UNPKG

webappengine

Version:

A web application platform that can host multiple web apps running with Node.js.

12 lines (10 loc) 200 B
/** * Encapsulates a redirect to the given route. */ "use strict"; function Redirect(to, params, query) { this.to = to; this.params = params; this.query = query; } module.exports = Redirect;