mirror of
https://github.com/rv-kip/rss-braider
synced 2025-04-29 22:25:09 +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;
|
|
}; |