Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 8eb4cbc

Browse files
committed
handle arguments of define same way as requirejs
1 parent ab35ec2 commit 8eb4cbc

File tree

1 file changed

+21
-28
lines changed

1 file changed

+21
-28
lines changed

amd-loader.js

+21-28
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,29 @@ module.constructor.prototype._compile = function(content, filename){
1414
}
1515
};
1616

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+
}
1832

19-
// infere the module
33+
// infer the module
2034
var currentModule = moduleStack[moduleStack.length-1];
2135
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");
4740
}
4841

4942
var req = function(module, relativeId, callback) {
@@ -75,7 +68,7 @@ global.define = function (id, injects, factory) {
7568
return mod.exports = factory;
7669
}
7770

78-
var returned = factory.apply(mod.exports, injects.map(function (injection) {
71+
var returned = factory.apply(mod.exports, deps.map(function (injection) {
7972
switch (injection) {
8073
// check for CommonJS injection variables
8174
case "require": return req;

0 commit comments

Comments
 (0)