Skip to content

Instantly share code, notes, and snippets.

@PavelLaptev
Created September 6, 2018 12:40
Show Gist options
  • Save PavelLaptev/64d75672f15851e4360ddfbdbaf6cdbf to your computer and use it in GitHub Desktop.
Save PavelLaptev/64d75672f15851e4360ddfbdbaf6cdbf to your computer and use it in GitHub Desktop.
getElementIndex = node => {
let index = 0;
while ((node = node.previousElementSibling)) {
index++;
}
return index;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment