Only UTF-8 Supported
This commit is contained in:
4
index.js
4
index.js
@@ -1508,10 +1508,10 @@ function numberToBits(number, bitLength) {
|
|||||||
bits.push((number >> i) & 1);
|
bits.push((number >> i) & 1);
|
||||||
return bits;
|
return bits;
|
||||||
}
|
}
|
||||||
function bytesToText(bytes, encoding='utf-8') {
|
function bytesToText(bytes) {
|
||||||
return new TextDecoder(encoding).decode(bytes);
|
return new TextDecoder(encoding).decode(bytes);
|
||||||
}
|
}
|
||||||
function textToBytes(text, encoding='utf-8') {
|
function textToBytes(text) {
|
||||||
return new TextEncoder(encoding).encode(text);
|
return new TextEncoder(encoding).encode(text);
|
||||||
}
|
}
|
||||||
function bytesToBits(bytes) {
|
function bytesToBits(bytes) {
|
||||||
|
|||||||
Reference in New Issue
Block a user