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