Skip to content

Commit 00d749c

Browse files
committed
refactor: simplify the escapeIdentifier logic
1 parent 6c840aa commit 00d749c

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

lib/client.js

+1-14
Original file line numberDiff line numberDiff line change
@@ -305,20 +305,7 @@ Client.prototype.getTypeParser = function (oid, format) {
305305

306306
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c
307307
Client.prototype.escapeIdentifier = function (str) {
308-
var escaped = '"'
309-
310-
for (var i = 0; i < str.length; i++) {
311-
var c = str[i]
312-
if (c === '"') {
313-
escaped += c + c
314-
} else {
315-
escaped += c
316-
}
317-
}
318-
319-
escaped += '"'
320-
321-
return escaped
308+
return '"' + str.replace(/"/g, '""') + '"'
322309
}
323310

324311
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c

0 commit comments

Comments
 (0)