UNPKG
dim
Version:
latest (0.3.7)
0.3.7
0.3.6-2
0.3.6-1
0.3.6-0
0.3.5-9
0.3.5-8
0.3.5-7
0.3.5-6
0.3.5-5
0.3.5-4
0.3.5-3
Develop in modularization of front-end
github.com/dim-team/dim
dim-team/dim
dim
/
plugins
/
postprocessor
/
lego.js
10 lines
(9 loc)
•
297 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
exports
.
JS
=
function
(
content, file
) {
if
(file.
isMod
) {
var
pre =
'lego.define("'
+ file.
getId
() +
'",function(require,exports,module){'
;
var
post = file.
isUnit
?
'},true);'
:
'});'
; content = pre + content + post; }
return
content; };