This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Run this code in browser console | |
## Based on https://gist.github.com/ikbelkirasan/601dd8a51f458bf09d5ce44a102b9fd0 | |
const getNodes = zap => { | |
let nodes = []; | |
for (let nodeId in zap.nodes) { | |
const node = zap.nodes[nodeId]; | |
nodes.push(node); | |
} |