Skip to content

Instantly share code, notes, and snippets.

View abass's full-sized avatar

Alex Bass abass

View GitHub Profile
@abass
abass / findZapForWebhookURL.js
Created February 11, 2020 08:57 — forked from ikbelkirasan/findZapForWebhookURL.js
Find the zap that matches a webhook URL.
{
const getNodes = zap => {
let nodes = [];
for (let nodeId in zap.nodes) {
const node = zap.nodes[nodeId];
nodes.push(node);
}
return nodes;
};
@abass
abass / 0_reuse_code.js
Created November 7, 2013 19:17
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console