D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
whatsapp-api
/
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(data) { return b4a.toString(data, this.encoding) } flush() { return '' } }