UNPKG

@chubbyts/chubbyts-decode-encode

Version:

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

8 lines (7 loc) 203 B
import { stringify } from 'yaml'; export const createYamlTypeEncoder = () => { return { encode: (data) => stringify(data, { indent: 4 }), contentType: 'application/x-yaml', }; };