Closed svickars closed 2 years ago
Update node.findAll to look for frames with names starting with # and ending with px, and that have parent === figma.currentPage, based on #13
node.findAll
#
px
parent === figma.currentPage
add regex expression to properly match frame name node.name.match(/^#\d+px$/). closes #13
node.name.match(/^#\d+px$/)
Update
node.findAll
to look for frames with names starting with#
and ending withpx
, and that haveparent === figma.currentPage
, based on #13