文件名称:aoot:在数据格式(例如CSV,TSV,XML和JSON)之间来回转换对象数组
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-20 23:57:07
JavaScript
oo 将对象数组与数据格式JSON,CSV,TSV,XML和YAML相互转换。 安装 npm install aoot --save 用法 var aoot = require ( 'aoot' ) // JSON to CSV var csv = aoot . csv ( json ) // JSON to TSV var tsv = aoot . tsv ( json ) // JSON to user defined seperated values var pipeSeperated = aoot . sv ( json , "|" ) // JSON to XML var xml = aoot . xml ( json ) // JSON to YAML var yaml = aoot . yaml ( json ) // CSV to JSON var json = aoo
【文件预览】:
aoot-master
----index.js(721B)
----package.json(731B)
----test()
--------test.js(615B)
----examples()
--------jsontocsv.js(305B)
--------sample.csv(86B)
--------jsontoxml.js(496B)
--------csvtoarr.js(326B)
--------sample.json(398B)
--------csvtojson.js(146B)
----lib()
--------utils.js(1KB)
--------yaml.js(107B)
--------sv.js(907B)
--------array.js(2KB)
--------aoot.js(661B)
--------props.js(661B)
--------xml.js(925B)
----.autocode()
--------config.yml(247B)
----README.md(2KB)