Use TextEncoder and TextDecoder if available

fix https://github.com/nodeca/pako/issues/228
This commit is contained in:
Alex Kocharin 2021-07-27 18:30:25 +03:00
parent 1ac0a4c7ec
commit 26dff4fb34
3 changed files with 39 additions and 1 deletions

View file

@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.4] - WIP
### Fixed
- Use TextEncoder and TextDecoder if available, #228.
## [2.0.3] - 2021-01-09
### Fixed
@ -174,6 +180,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release.
[2.0.4]: https://github.com/nodeca/pako/compare/2.0.3...2.0.4
[2.0.3]: https://github.com/nodeca/pako/compare/2.0.2...2.0.3
[2.0.2]: https://github.com/nodeca/pako/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/nodeca/pako/compare/2.0.0...2.0.1

View file

@ -24,6 +24,10 @@ _utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
// convert string to array (typed, when possible)
module.exports.string2buf = (str) => {
if (typeof TextEncoder === 'function' && TextEncoder.prototype.encode) {
return new TextEncoder().encode(str);
}
let buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
// count binary size
@ -97,9 +101,14 @@ const buf2binstring = (buf, len) => {
// convert array to string
module.exports.buf2string = (buf, max) => {
let i, out;
const len = max || buf.length;
if (typeof TextDecoder === 'function' && TextDecoder.prototype.decode) {
return new TextDecoder().decode(buf.subarray(0, max));
}
let i, out;
// Reserve max possible length (2 words per char)
// NB: by unknown reasons, Array is significantly faster for
// String.fromCharCode.apply than Uint16Array.

View file

@ -40,6 +40,19 @@ describe('Encode/Decode', () => {
// use node Buffer internal conversion as "done right"
const utf8sample = new Uint8Array(Buffer.from(utf16sample));
let _TextEncoder, _TextDecoder;
/* eslint-disable no-global-assign, no-native-reassign */
beforeEach(() => {
_TextEncoder = TextEncoder;
_TextDecoder = TextDecoder;
});
afterEach(() => {
TextEncoder = _TextEncoder;
TextDecoder = _TextDecoder;
});
it('utf-8 border detect', () => {
const ub = strings.utf8border;
assert.strictEqual(ub(utf8sample, 1), 1);
@ -75,10 +88,19 @@ describe('Encode/Decode', () => {
strings.string2buf(utf16sample),
utf8sample
);
TextEncoder = null;
assert.deepStrictEqual(
strings.string2buf(utf16sample),
utf8sample
);
});
it('Decode utf8 buf to string', () => {
assert.ok(strings.buf2string(utf8sample), utf16sample);
TextDecoder = null;
assert.ok(strings.buf2string(utf8sample), utf16sample);
});
});