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