UNPKG

@wmfs/tymly-pg-plugin

Version:

Replace Tymly's out-the-box memory storage with PostgreSQL

13 lines (11 loc) 266 B
'use strict' module.exports = function () { return function animalConverter (sourceRow, callback) { const output = { animal: sourceRow.animal, colour: sourceRow.colour, yearBorn: (2017 - sourceRow.age) } callback(null, output) } }