Skip to content

Commit

Permalink
$mol_base64_safe: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
jin committed Nov 20, 2023
1 parent baaf0fa commit 72c343e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base64/encode/safe/safe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
namespace $ {
export function $mol_base64_encode_safe( buffer: Uint8Array ) {
return $mol_base64_encode( buffer ).replace( /\+/g, '-' ).replace( /\//g, '_' ).replace( /=/, '' )
return $mol_base64_encode( buffer ).replace( /\+/g, '-' ).replace( /\//g, '_' ).replace( /=/g, '' )
}
}

0 comments on commit 72c343e

Please sign in to comment.