Closed vitaly-t closed 8 years ago
from your code:
return db.one(sql, bindings).then(this.format);
shouldn't that be this instead?:
return db.one(sql, bindings).then(row => this.format(row));
No, I was wrong :)
from your code:
shouldn't that be this instead?: