Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/6948
/
.
/
node_modules
/
text-decoder
/
lib
/
pass-through-decoder.js
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
''
}
}