4 lines
123 B
JavaScript
4 lines
123 B
JavaScript
module.exports = (collection) => {
|
|
if (!collection || !collection.length) return ''
|
|
return collection[0].publishedAt
|
|
}
|