UNPKG

open-music-api-node

Version:
31 lines (28 loc) 377 B
/* eslint-disable camelcase */ const mapDBSongToModel = ({ id, title, year, performer, genre, duration, album_id, }) => ({ id, title, year, performer, genre, duration, albumId: album_id, }); const mapDBSongsToModel = ({ id, title, performer, }) => ({ id, title, performer, }); module.exports = { mapDBSongsToModel, mapDBSongToModel };