Skip to content

Commit ffe51c2

Browse files
rpedelabrianc
rpedela
authored andcommitted
Add missing semicolons.
1 parent b5e89b2 commit ffe51c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/client.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Client.prototype.escapeIdentifier = function(str) {
230230
escaped += '"';
231231

232232
return escaped;
233-
}
233+
};
234234

235235
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c
236236
Client.prototype.escapeLiteral = function(str) {
@@ -257,7 +257,7 @@ Client.prototype.escapeLiteral = function(str) {
257257
}
258258

259259
return escaped;
260-
}
260+
};
261261

262262
Client.prototype._pulseQueryQueue = function() {
263263
if(this.readyForQuery===true) {

0 commit comments

Comments
 (0)