summaryrefslogtreecommitdiff
path: root/lib/dojo/node.js.uncompressed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-18 10:26:24 +0400
committerAndrew Dolgov <[email protected]>2013-03-18 10:26:26 +0400
commitf0cfe83e3725f9a3928da97a6e3085e79cb25309 (patch)
tree4b0af188defaa807c7bc6ff3a101b41c9166c463 /lib/dojo/node.js.uncompressed.js
parent9a2885da170ffd64358b99194095851a2d09c1b6 (diff)
upgrade dojo to 1.8.3 (refs #570)
Diffstat (limited to 'lib/dojo/node.js.uncompressed.js')
-rw-r--r--lib/dojo/node.js.uncompressed.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/dojo/node.js.uncompressed.js b/lib/dojo/node.js.uncompressed.js
new file mode 100644
index 000000000..e7706668b
--- /dev/null
+++ b/lib/dojo/node.js.uncompressed.js
@@ -0,0 +1,27 @@
+define("dojo/node", ["dojo/has"], function(has){
+ if(! 0 ){
+ throw new Error("node plugin failed to load because environment is not Node.js");
+ }
+
+ return {
+ // summary:
+ // This AMD plugin module allows native Node.js modules to be loaded by AMD modules using the Dojo
+ // loader. Note that this plugin will not work with AMD loaders other than the Dojo loader.
+ // example:
+ // | require(["dojo/node!fs"], function(fs){
+ // | var fileData = fs.readFileSync("foo.txt", "utf-8");
+ // | });
+
+ load: function(/*string*/ id, /*Function*/ require, /*Function*/ load){
+ // summary:
+ // Standard AMD plugin interface. See https://github.com/amdjs/amdjs-api/wiki/Loader-Plugins
+ // for information.
+
+ if(!require.nodeRequire){
+ throw new Error("Cannot find native require function");
+ }
+
+ load(require.nodeRequire(id));
+ }
+ };
+}); \ No newline at end of file