import { nextSibling } from 'extra-dom' export function nextNthSibling( nth: number ): (node: Node) => T | undefined { return (node: Node) => nextSibling(node, nth) as T | undefined }