All files / lib/codecs text.js

100% Statements 3/3
100% Branches 1/1
100% Functions 2/2
100% Lines 3/3
1 2 3 4 5 6 7 8 9 10 11 12 13 14    7x       4x       6x      
class TextCodec {
  constructor () {
    this.mediaType = 'text/*'
  }
 
  decode (text, options = {}) {
    return text
  }
}
 
module.exports = {
  TextCodec: TextCodec
}