UNPKG

sharec-schema

Version:

Utilities for configuration files merge

12 lines (9 loc) 230 B
// @ts-check const { toJSON } = require('../parsers/json') /** * Transforms Map to JSON-string * @param {Map<string, any>} input * @returns {string} */ const toJsonPipe = (input) => toJSON(input) module.exports = toJsonPipe