UNPKG

jose

Version:

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

7 lines (6 loc) 233 B
export function validateExtractableOption(extractable) { if (extractable !== undefined && typeof extractable !== 'boolean') { throw new TypeError('"extractable" option must be a boolean'); } return extractable; }