mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-06 03:41:03 +01:00
moved utf8tail() to strings utils
This commit is contained in:
parent
33c90194d0
commit
b949c39564
2 changed files with 8 additions and 7 deletions
|
@ -10,11 +10,6 @@ var zstream = require('./zlib/zstream');
|
||||||
var gzheader = require('./zlib/gzheader');
|
var gzheader = require('./zlib/gzheader');
|
||||||
|
|
||||||
|
|
||||||
// calculate tail size of utf8 char by current byte value
|
|
||||||
function utf8tail(code) {
|
|
||||||
return code >= 252 ? 6 : code >= 248 ? 5 : code >= 240 ? 4 : code >= 224 ? 3 : code >= 192 ? 2 : 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* class Inflate
|
* class Inflate
|
||||||
*
|
*
|
||||||
|
@ -220,10 +215,10 @@ Inflate.prototype.push = function(data, mode) {
|
||||||
next_out_utf8_index = strm.next_out_index - 6;
|
next_out_utf8_index = strm.next_out_index - 6;
|
||||||
if (next_out_utf8_index < 0) { next_out_utf8_index = 0; }
|
if (next_out_utf8_index < 0) { next_out_utf8_index = 0; }
|
||||||
|
|
||||||
tail = utf8tail(strm.next_out[next_out_utf8_index]);
|
tail = strings.utf8tail(strm.next_out[next_out_utf8_index]);
|
||||||
while (next_out_utf8_index + tail <= strm.next_out_index) {
|
while (next_out_utf8_index + tail <= strm.next_out_index) {
|
||||||
next_out_utf8_index += tail;
|
next_out_utf8_index += tail;
|
||||||
tail = utf8tail(strm.next_out[next_out_utf8_index]);
|
tail = strings.utf8tail(strm.next_out[next_out_utf8_index]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// shit happened - broken tail. then take it all.
|
// shit happened - broken tail. then take it all.
|
||||||
|
|
|
@ -119,3 +119,9 @@ exports.binstring2buf = function(str) {
|
||||||
}
|
}
|
||||||
return buf;
|
return buf;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// calculate tail size of utf8 char by current byte value
|
||||||
|
exports.utf8tail = function(code) {
|
||||||
|
return code >= 252 ? 6 : code >= 248 ? 5 : code >= 240 ? 4 : code >= 224 ? 3 : code >= 192 ? 2 : 1;
|
||||||
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue