summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/amd-simplified-cjs-aliased-require2.js
blob: be391226af3a1ae787f4c8f20fc36da68256e154 (plain)
1
2
3
4
5
6
7
8
define(["./amd-dep.js","require"],function(amdDep, req){
	var amdCJS = req("./amd-cjs-module.js");
	return {
		name: "require2",
		amdCJS: amdCJS,
		amdDep: amdDep
	};
});