UNPKG

overflow-scanner

Version:

Vulnerability scanning using graphs!

18 lines (17 loc) 682 B
import { LGraphNode, LiteGraph } from "litegraph.js"; export class MapRegexMatch extends LGraphNode { constructor() { super(); this.addInput("Targets", LiteGraph.ACTION); this.addProperty("regex", "", "text"); this.addProperty("flags", "", "text"); this.addWidget("text", "Regex", "", "regex"); this.addWidget("text", "Flags", "", "flags"); this.addOutput("Targets", LiteGraph.EVENT); } title = "Regex match"; serialize_widgets = true; async onAction(action, data) { this.triggerSlot(0, data.map(x => x.match(new RegExp(this.properties.regex, this.properties.flags))?.[0]).filter(x => x)); } }