/* * https://github.com/morethanwords/tweb * Copyright (C) 2019-2021 Eduard Kuzmenko * https://github.com/morethanwords/tweb/blob/master/LICENSE */ export default function whichChild(elem: Node) { if(!elem.parentNode) { return -1; } let i = 0; // @ts-ignore while((elem = elem.previousElementSibling) !== null) ++i; return i; }