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