From ffe51c20f2b192c30ff5280e8913dfa7ca31a0ce Mon Sep 17 00:00:00 2001 From: rpedela Date: Thu, 11 Jul 2013 17:23:59 -0600 Subject: [PATCH] Add missing semicolons. --- lib/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client.js b/lib/client.js index ae3c3c78..d37b0a58 100644 --- a/lib/client.js +++ b/lib/client.js @@ -230,7 +230,7 @@ Client.prototype.escapeIdentifier = function(str) { escaped += '"'; return escaped; -} +}; // Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c Client.prototype.escapeLiteral = function(str) { @@ -257,7 +257,7 @@ Client.prototype.escapeLiteral = function(str) { } return escaped; -} +}; Client.prototype._pulseQueryQueue = function() { if(this.readyForQuery===true) {