UNPKG

summer-mvc

Version:

Structured, Light, Spring-like Web Application Development Framework

13 lines (11 loc) 233 B
module.exports = modelAndView; function modelAndView( model, view ){ this.model = {}; this.view = {}; this.setModel = function( m ){ this.model = m; } this.setView = function( v ){ this.view = v; } }