UNPKG

mvcx

Version:

A web based MVC framework for Node JS.

10 lines (7 loc) 243 B
module.exports = function(responseHandlerFn){ var self = this; if(typeof(responseHandlerFn) === 'function'){ throw new Error('[mvcx] Invalid response handler function specified.'); } this.handler = responseHandlerFn; };