UNPKG

json-parser-yaml-converter

Version:
13 lines (9 loc) 244 B
/** * This module exports the parser and yamlConverter functions. * * @module index */ 'use strict'; import { jsonParse } from './parser.js'; import { jsonToYaml } from './yamlConverter.js'; export { jsonParse, jsonToYaml };