mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 03:32:06 +00:00
5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
|
|
exports.o = function o(obj) {
|
||
|
|
// Workaround for knex returning RowDataPacket and failing assertions
|
||
|
|
return Object.assign({}, obj);
|
||
|
|
}
|