NaturalIntelligence/Stubmatic

View on GitHub
lib/responseParsers/msgpack.js

Summary

Maintainability
A
0 mins
Test Coverage
const notpack = require("notepack.io");

exports.parse = function(jsonString){
    return notpack.encode(JSON.parse(jsonString));
}