UNPKG

@chubbyts/chubbyts-decode-encode

Version:

A simple decode/encode solution for json / jsonx / url-encoded / xml / yaml.

7 lines (6 loc) 216 B
export const createJsonTypeEncoder = (prettyPrint = false) => { return { encode: (data) => JSON.stringify(data, undefined, prettyPrint ? 4 : undefined), contentType: 'application/json', }; };