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