UNPKG
ti
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A simple MVC framework for node web server.
mrtian/Ti
ti
/
sample
/
static
/
js
/
a.js
11 lines
(10 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
module
= {};
module
.exports = { say:
function
(words)
{ alert(words) },
write
:
function
(words)
{ document.
write
(words) } }
module
.exports.
write
(
'hello mt'
);