1 个不稳定版本
0.1.1 | 2023年1月13日 |
---|
#33 在 #json-toml
6KB
61 代码行
json2toml
一个简单的命令行工具,可以将json文件转换为toml文件。生成的文件名与输入文件相同,但扩展名从.json
改为.toml
。
深受toml2json启发。
用法
json2toml [filename]
示例
输入
// file.json
{
"key": "value"
}
输出
# output.toml
key = "value"
依赖项
~1.5–2MB
~37K SLoC