UNPKG

@rowanmanning/feed-parser

Version:

A well-tested and resilient parser for RSS and Atom feeds

14 lines (11 loc) 238 B
'use strict'; /** * @param {any | null} value * The value to check. * @returns {value is any} * Returns whether the value is not null. */ function isNotNull(value) { return value !== null; } exports.isNotNull = isNotNull;