UNPKG

@gleif-it/did-webs-ts

Version:
9 lines (8 loc) 199 B
// Runtime validator export const createAid = (aid) => { const regex = /^E[a-zA-Z0-9_-]{43}$/; if (!regex.test(aid)) { throw new Error('Invalid AID format'); } return aid; };