dylang / node-rss

RSS feed generator for Node.
https://npmjs.org/package/rss
MIT License
999 stars 133 forks source link

add dateFormatter to RSS constructor options #91

Open ajsharp opened 5 years ago

ajsharp commented 5 years ago

Adds the ability to pass in a dateFormatter function to the RSS constructor, which will receive the raw date object for the feed pubDate, and each item's date fields. Enables using a custom date format.

This also changes the default date format function from .toGMTString() to .toUTCString().

Fixes #90