UNPKG

186 BJavaScriptView Raw
1/**
2 * Check if the `node` is visible Node (not null, undefined, or false)
3 */
4export function isNodeWithContent(node) {
5 return node !== undefined && node !== null && node !== false;
6}
\No newline at end of file