blob: e29a9a44f095b721337311f0718b104ddb55db97 [file] [edit]
module.exports = class PassThroughDecoder {
constructor (encoding) {
this.encoding = encoding
}
get remaining () {
return 0
}
decode (tail) {
return tail.toString(this.encoding)
}
flush () {
return ''
}
}