UNPKG

feed

Version:

Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!

7 lines (6 loc) 165 B
export function sanitize(url: string | undefined): string | undefined { if (typeof (url) === 'undefined') { return; } return url.replace(/&/g, '&'); }