UNPKG
view
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
0.9.1
0.9.0
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.0
0.6.1
0.6.0
0.5.0
0.1.0
A View engine
github.com/bigcompany/view
bigcompany/view
view
/
test
/
view9
/
layout.js
12 lines
(7 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
[
'exports'
] =
function
(
options, callback
) {
var
$ =
this
.
$
;
this
.
parent
.
index
.
presenter
=
function
(
options, callback
) {
callback
(
null
,
"hi"
); };
callback
(
null
, $.
html
()); };