This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create any artists that are not in the DB and return complete array of all artists | |
export function createArtists(artists) { | |
var updatedArtists = []; | |
return new Promise( function( resolve, reject ) { | |
artists.forEach( artist => { | |
if (! artist.id) { | |
// If the artist has no id - create it |