UNPKG

jose

Version:

JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes

8 lines (7 loc) 172 B
export function table(entries) { const out = { __proto__: null }; for (const alg in entries) { out[alg] = { ...entries[alg], alg }; } return out; }