Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4C36510D2E for ; Thu, 3 Oct 2013 15:51:04 +0000 (UTC) Received: (qmail 42610 invoked by uid 500); 3 Oct 2013 15:50:56 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 42227 invoked by uid 500); 3 Oct 2013 15:50:54 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 41922 invoked by uid 99); 3 Oct 2013 15:50:52 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Oct 2013 15:50:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2683F90E9C8; Thu, 3 Oct 2013 15:50:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jan@apache.org To: commits@couchdb.apache.org Date: Thu, 03 Oct 2013 15:51:06 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [16/17] git commit: updated refs/heads/master to 532100c move module exports past function decrarations Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/447f101d Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/447f101d Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/447f101d Branch: refs/heads/master Commit: 447f101d3245e18384cddfedc10277ff7fe2647b Parents: 0902e8c Author: Sven Lito Authored: Thu Oct 3 16:33:11 2013 +0100 Committer: Jan Lehnardt Committed: Thu Oct 3 17:45:40 2013 +0200 ---------------------------------------------------------------------- src/couchjs-node/couchjs.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/447f101d/src/couchjs-node/couchjs.js ---------------------------------------------------------------------- diff --git a/src/couchjs-node/couchjs.js b/src/couchjs-node/couchjs.js index 7b12dc3..84c21e0 100644 --- a/src/couchjs-node/couchjs.js +++ b/src/couchjs-node/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 +}; +