rss-braider/examples/plugins/capitalize_title.js
2015-06-11 17:16:52 -07:00

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;
};