mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
427 B
15 lines
427 B
14 years ago
|
var R = require;
|
||
|
var E = exports;
|
||
|
var M = module;
|
||
|
|
||
|
define(function(require, exports, module, nothingHere) {
|
||
|
if (R !== require) throw new Error("invalid require in AMD cb");
|
||
|
if (E !== exports) throw new Error("invalid exports in AMD cb");
|
||
|
if (M !== module) throw new Error("invalid module in AMD cb");
|
||
|
if (nothingHere !== undefined) {
|
||
|
throw new Error("unknown args to AMD cb");
|
||
|
}
|
||
|
|
||
|
exports.ok = { ok: true };
|
||
|
});
|