mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-02-04 14:30:14 +00:00
7 lines
179 B
JavaScript
7 lines
179 B
JavaScript
module.exports = function (item, itemOptions, source) {
|
|
if (itemOptions.title) {
|
|
itemOptions.title = itemOptions.title.toUpperCase();
|
|
}
|
|
|
|
return itemOptions;
|
|
}; |