We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a24554e commit 95ae737Copy full SHA for 95ae737
src/lib/code.js
@@ -245,15 +245,15 @@ function byteArray2hexStr(byteArray) {
245
return str;
246
}
247
248
-//从base64字符串中解码出原文,格式为byteArray格式
+//Decode the original text from the base64 string in byteArray format
249
function base64DecodeFromString(string64) {
250
var b = new Base64();
251
var decodeBytes = b.decodeToByteArray(string64);
252
return decodeBytes;
253
254
255
//return baset64 String
256
-//将byteArray格式数据编码为base64字符串
+//Encode byteArray format data to base64 string
257
function base64EncodeToString(bytes) {
258
// var string = bytesToString(bytes);
259
0 commit comments