5 lines
141 B
JavaScript
Raw Normal View History

2020-08-21 20:31:54 -07:00
exports.o = function o(obj) {
// Workaround for knex returning RowDataPacket and failing assertions
return Object.assign({}, obj);
}