Default behaviour to have undefined in children?
Am I expected to filter out undefined nodes in children?
I have 2 uses cases and I'm seeing undefined peppered in with other nodes.
Is this the default behaviour with solidjs?

const b = children(() => props.children).toArray();
console.log(b);
const c = children(() => props.children).toArray().filter((item) => !!item);
console.log(c);const b = children(() => props.children).toArray();
console.log(b);
const c = children(() => props.children).toArray().filter((item) => !!item);
console.log(c);