You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/07/17 20:01:25 UTC

[09/12] query-server-node commit: updated refs/heads/master to dc16420

move module exports past function decrarations


Project: http://git-wip-us.apache.org/repos/asf/couchdb-query-server-node/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-query-server-node/commit/a5efd5f3
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-query-server-node/tree/a5efd5f3
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-query-server-node/diff/a5efd5f3

Branch: refs/heads/master
Commit: a5efd5f3a3a9db56f6d6d76352a30e5a86c84ef8
Parents: 9a1250e
Author: Sven Lito <me...@svenlito.com>
Authored: Thu Oct 3 16:33:11 2013 +0100
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Thu Oct 3 17:45:40 2013 +0200

----------------------------------------------------------------------
 couchjs.js | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-query-server-node/blob/a5efd5f3/couchjs.js
----------------------------------------------------------------------
diff --git a/couchjs.js b/couchjs.js
index 7b12dc3..84c21e0 100644
--- a/couchjs.js
+++ b/couchjs.js
@@ -10,14 +10,6 @@
 // License for the specific language governing permissions and limitations under
 // the License.
 
-module.exports = {
-  'print': print,
-  'readline': readline,
-  'stdin': stdin,
-  'evalcx': evalcx,
-  'quit': quit,
-  'gc': gc
-};
 
 
 var vm = require('vm');
@@ -127,3 +119,13 @@ function toSource() {
 
   return util.inspect(this);
 }
+
+module.exports = {
+  'print': print,
+  'readline': readline,
+  'stdin': stdin,
+  'evalcx': evalcx,
+  'quit': quit,
+  'gc': gc
+};
+