mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-02-07 07:09:17 +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;
|
|
}; |