v1.1.9: bugfix Node.js atob
invocation #2
Loading…
Reference in New Issue
No description provided.
Delete Branch "(deleted):nodejs-atob"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Browsers have a global
atob
function, but Node.js does not. This is very important for allowingPEM.parseBlock
to work out of the box, as it callsEnc.base64ToBuf
directly.