@@ -14,36 +14,29 @@ module.constructor.prototype._compile = function(content, filename){
14
14
}
15
15
} ;
16
16
17
- global . define = function ( id , injects , factory ) {
17
+ global . define = function ( id , deps , factory ) {
18
+ // Allow for anonymous modules
19
+ if ( typeof id !== "string" ) {
20
+ factory = deps ;
21
+ deps = id ;
22
+ id = null ;
23
+ }
24
+ // This module may not have dependencies
25
+ if ( deps && ! Array . isArray ( deps ) ) {
26
+ factory = deps ;
27
+ deps = null ;
28
+ }
29
+ if ( ! deps ) {
30
+ deps = [ "require" , "exports" , "module" ] ;
31
+ }
18
32
19
- // infere the module
33
+ // infer the module
20
34
var currentModule = moduleStack [ moduleStack . length - 1 ] ;
21
35
var mod = currentModule || module . parent || require . main ;
22
-
23
- // parse arguments
24
- if ( ! factory ) {
25
- var defaultInjects = [ "require" , "exports" , "module" ] ;
26
- // two or less arguments
27
- factory = injects ;
28
- if ( factory ) {
29
- // two args
30
- if ( typeof id === "string" ) {
31
- if ( id !== mod . id ) {
32
- throw new Error ( "Can not assign module to a different id than the current file" ) ;
33
- }
34
- // default injects
35
- injects = defaultInjects ;
36
- }
37
- else {
38
- // anonymous, deps included
39
- injects = id ;
40
- }
41
- }
42
- else {
43
- // only one arg, just the factory
44
- factory = id ;
45
- injects = defaultInjects ;
46
- }
36
+
37
+
38
+ if ( typeof id === "string" && id !== mod . id ) {
39
+ throw new Error ( "Can not assign module to a different id than the current file" ) ;
47
40
}
48
41
49
42
var req = function ( module , relativeId , callback ) {
@@ -75,7 +68,7 @@ global.define = function (id, injects, factory) {
75
68
return mod . exports = factory ;
76
69
}
77
70
78
- var returned = factory . apply ( mod . exports , injects . map ( function ( injection ) {
71
+ var returned = factory . apply ( mod . exports , deps . map ( function ( injection ) {
79
72
switch ( injection ) {
80
73
// check for CommonJS injection variables
81
74
case "require" : return req ;
0 commit comments