Files
fvtt-prism-rpg/node_modules/text-decoder/lib/pass-through-decoder.js
T
2025-11-05 20:35:04 +01:00

18 lines
240 B
JavaScript

module.exports = class PassThroughDecoder {
constructor (encoding) {
this.encoding = encoding
}
get remaining () {
return 0
}
decode (tail) {
return tail.toString(this.encoding)
}
flush () {
return ''
}
}