All files / lib/codecs json.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    8x       18x       6x      
class JSONCodec {
  constructor () {
    this.mediaType = 'application/json'
  }
 
  decode (text, options = {}) {
    return JSON.parse(text)
  }
}
 
module.exports = {
  JSONCodec: JSONCodec
}