Skip to content

Commit 95ae737

Browse files
committed
feat:remove unuse code chinese
1 parent a24554e commit 95ae737

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/code.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,15 +245,15 @@ function byteArray2hexStr(byteArray) {
245245
return str;
246246
}
247247

248-
//从base64字符串中解码出原文,格式为byteArray格式
248+
//Decode the original text from the base64 string in byteArray format
249249
function base64DecodeFromString(string64) {
250250
var b = new Base64();
251251
var decodeBytes = b.decodeToByteArray(string64);
252252
return decodeBytes;
253253
}
254254

255255
//return baset64 String
256-
//将byteArray格式数据编码为base64字符串
256+
//Encode byteArray format data to base64 string
257257
function base64EncodeToString(bytes) {
258258
// var string = bytesToString(bytes);
259259
var b = new Base64();

0 commit comments

Comments
 (0)