UNPKG
fmd.js
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
0.2.6
another module writing system
fmdjs.org
fmdjs/fmd.js
fmd.js
/
examples
/
hello-world
/
done.js
7 lines
(4 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
define([
'require'
,
'output'
,
'w'
], function( req, out, wo ){ var he = re
q('h')
;
//
取得
`h`
模块的接口赋予给
`he`
变量 out.page( he +
' '
+ wo );
//
`page`
方法由
`output`
模块提供 } );