Skip to content

Commit 3c10abc

Browse files
committed
remove unused Result members
1 parent b7a2356 commit 3c10abc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/pg/lib/result.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ class Result {
1616
this.fields = []
1717
this._parsers = undefined
1818
this._types = types
19-
this.RowCtor = null
20-
this.rowAsArray = rowMode === 'array'
21-
if (this.rowAsArray) {
19+
const rowAsArray = rowMode === 'array'
20+
if (rowAsArray) {
2221
this.parseRow = this._parseRowAsArray
2322
}
2423
this._prebuiltEmptyResultObject = null

0 commit comments

Comments
 (0)