UNPKG
getting-started
Version:
latest (1.0.1)
1.0.1
Tutoral for Getting Started with Taunus
github.com/taunus/getting-started
taunus/getting-started
getting-started
/
client
/
js
/
controllers
/
home
/
index.js
6 lines
(4 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
;
module
.
exports
=
function
(
model, container, route
) {
console
.
log
(
'Rendered view %s using model:\n%s'
, route.
action
,
JSON
.
stringify
(model,
null
,
2
)); };