UNPKG

@gleif-it/did-webs-ts

Version:
13 lines (12 loc) 328 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createAid = void 0; // Runtime validator const createAid = (aid) => { const regex = /^E[a-zA-Z0-9_-]{43}$/; if (!regex.test(aid)) { throw new Error('Invalid AID format'); } return aid; }; exports.createAid = createAid;