文件名称:serialise-js:用于序列化JavaScript数据的可扩展库
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-06 16:40:13
JavaScript
序列化js 用于序列化JavaScript数据的可扩展库 安装 npm install serialise-js --save 用法 序列化任何变量: var serialise = require('serialise-js'); serialise({ foo: [1, 2, 3], bar: { key: 'value' }, "the key": "the value" }); 返回值: { foo: [ 1, 2, 3 ], bar: { key: 'value' }, 'the key': 'the value' } 选项 您可以将options对象作为第二个参数传递给serialise : indent -设置用于单个缩进的字符,默认2个空格 doubleQuotes将此doubleQuotes设置为
【文件预览】:
serialise-js-master
----bin(18B)
----index.js(3KB)
----.jscsrc(2KB)
----package.json(812B)
----test()
--------index.js(10KB)
----gulpfile.js(2KB)
----LICENSE(1KB)
----.gitignore(14B)
----CHANGELOG.md(553B)
----README.md(4KB)