function getRefsFromTarget()

in src/panels/graph.ts [137:146]


function getRefsFromTarget(target: string) {
    const refMatchRegex = /.*?#(\w)[,)]/g;
    const refs = [];
    let matches;

    while ((matches = refMatchRegex.exec(target))) {
        refs.push(matches[1]);
    }
    return refs;
}