23 lines
377 B
TypeScript
23 lines
377 B
TypeScript
import { exists } from './misc'
|
|
|
|
function isValidRSSFeed (value: string) {
|
|
if (!exists(value)) return false
|
|
|
|
const feedExtensions = [
|
|
'xml',
|
|
'json',
|
|
'json1',
|
|
'rss',
|
|
'rss2',
|
|
'atom',
|
|
'atom1'
|
|
]
|
|
|
|
return feedExtensions.includes(value)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
isValidRSSFeed
|
|
}
|