mirror of
https://github.com/rv-kip/rss-braider
synced 2025-04-30 06:35:09 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
module.exports = function (item, itemOptions, source) {
|
|
if (!item || !itemOptions) {
|
|
return;
|
|
}
|
|
|
|
// This plugin does no processing
|
|
// It's just a template
|
|
|
|
return itemOptions;
|
|
}; |