mirror of
https://github.com/KevinMidboe/fetch-the-release.git
synced 2025-10-29 09:30:24 +00:00
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
|
|
const whoAmI = (result) => {
|
|
return `${result.title} (${result.year}) - ${result.status}`
|
|
}
|
|
|
|
const printAll = (media) => {
|
|
media.forEach(item => {
|
|
console.log(whoAmI(item))
|
|
})
|
|
}
|
|
|
|
module.exports = { whoAmI, printAll }
|