⚡ Zero-dependency plcbundle library exclusively for Bun
at main 180 B view raw
1export function detect({ op }) { 2 const labels = []; 3 4 if (op.did.startsWith('did:plc:aa')) { 5 labels.push('test') 6 } 7 8 console.log(op.operation.sig) 9 10 return labels; 11}