Skip to content

Instantly share code, notes, and snippets.

@thomas-lowry
Created September 14, 2019 16:30
Show Gist options
  • Save thomas-lowry/4d2d890ae5dfd4ab4eccebc4da99d52d to your computer and use it in GitHub Desktop.
Save thomas-lowry/4d2d890ae5dfd4ab4eccebc4da99d52d to your computer and use it in GitHub Desktop.
Find the page of a node in Figma
function getPage(node) {
let item = node;
while (item.type != 'PAGE') {
item = item.parent;
console.log(item);
}
return item;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment