UNPKG

coreapi

Version:
14 lines (11 loc) 193 B
class JSONCodec { constructor () { this.mediaType = 'application/json' } decode (text, options = {}) { return JSON.parse(text) } } module.exports = { JSONCodec: JSONCodec }