We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2d97f commit 1bc9cfaCopy full SHA for 1bc9cfa
lib/connection.js
@@ -407,7 +407,7 @@ class Connection extends EventEmitter {
407
get [Symbol.toStringTag]() {
408
return fqn;
409
}
410
- };
+ }
411
this._dbObjectClasses[fqn] = cls = DbObject;
412
cls.prototype.schema = schema;
413
cls.prototype.name = name;
lib/dbObject.js
@@ -100,7 +100,6 @@ class BaseDbObject {
100
101
const result = {};
102
for (let name in this.attributes) {
103
- const attr = this.attributes[name];
104
let value = this[name];
105
if (value instanceof BaseDbObject) {
106
value = value._toPojo();
0 commit comments