D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
wabot.whatzi.online
/
node_modules
/
text-decoder
/
lib
/
Filename :
pass-through-decoder.js
back
Copy
const b4a = require('b4a') module.exports = class PassThroughDecoder { constructor (encoding) { this.encoding = encoding } get remaining () { return 0 } decode (tail) { return b4a.toString(tail, this.encoding) } flush () { return '' } }