jose/lib/index.mjs
Filip Skokan 1aa9035552 feat: added support for ESM (ECMAScript modules)
BREAKING CHANGE: due to added ESM module support Node.js version with
ESM implementation bugs are no longer supported, this only affects early
v13.x versions. The resulting Node.js semver range is
`>=10.13.0 < 13 || >=13.7.0`
2020-09-08 14:12:04 +02:00

9 lines
219 B
JavaScript

import mod from './index.js'
export default mod
export const JWE = mod.JWE
export const JWK = mod.JWK
export const JWKS = mod.JWKS
export const JWS = mod.JWS
export const JWT = mod.JWT
export const errors = mod.errors