forked from public/fvtt-cthulhu-eternal
Initial import with skill sheet working
This commit is contained in:
17
node_modules/text-decoder/lib/pass-through-decoder.js
generated
vendored
Normal file
17
node_modules/text-decoder/lib/pass-through-decoder.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
module.exports = class PassThroughDecoder {
|
||||
constructor (encoding) {
|
||||
this.encoding = encoding
|
||||
}
|
||||
|
||||
get remaining () {
|
||||
return 0
|
||||
}
|
||||
|
||||
decode (tail) {
|
||||
return tail.toString(this.encoding)
|
||||
}
|
||||
|
||||
flush () {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user