plist2
Version:
Converts between .tmLanguage(.plist), .json, .cson and .yaml formats
13 lines (11 loc) • 306 B
JavaScript
/* eslint-disable */
/*
dester builds:
yaml2plist.ts
*/
import yaml2js from '../yaml2js';
import js2plist from '../js2plist';
/* filename: yaml2plist.ts
timestamp: 2024-12-13T15:18:12.648Z */
var yaml2plist = (source, indent = 2) => js2plist(yaml2js(source), indent);
export { yaml2plist as default };