Skip to content

Instantly share code, notes, and snippets.

@joshuakb2
Created November 19, 2020 04:38
Show Gist options
  • Save joshuakb2/ce461952354110a01add1a84b4a75428 to your computer and use it in GitHub Desktop.
Save joshuakb2/ce461952354110a01add1a84b4a75428 to your computer and use it in GitHub Desktop.
Duplicate a StringDecoder
function duplicateStringDecoder(decoder) {
let r = new StringDecoder(decoder.encoding);
let partialCharBytes = decoder.lastTotal - decoder.lastNeed;
if (partialCharBytes > 0) {
r.write(decoder.lastChar.slice(0, partialCharBytes));
}
return r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment