stringify-object:字符串化像JSON.stringify这样的对象数组,而无需所有双引号

时间:2024-06-14 21:13:29
【文件属性】:

文件名称:stringify-object:字符串化像JSON.stringify这样的对象数组,而无需所有双引号

文件大小:9KB

文件格式:ZIP

更新时间:2024-06-14 21:13:29

JavaScript

串化对象 使用JSON.stringify之类的对象/数组进行字符串化,只是不使用所有双引号 当您想要以格式化的方式获取对象的字符串表示形式时很有用。 它还处理循环引用,并允许您指定引用类型。 安装 $ npm install stringify-object 用法 const stringifyObject = require ( 'stringify-object' ) ; const object = { foo : 'bar' , 'arr' : [ 1 , 2 , 3 ] , nested : { hello : "world" } } ; const pretty = stringifyObject ( object , { indent : ' ' , singleQuotes : false } ) ; console . log ( pretty


【文件预览】:
stringify-object-main
----.gitignore(23B)
----.github()
--------security.md(179B)
--------workflows()
--------funding.yml(52B)
----test()
--------fixtures()
--------index.js(5KB)
----LICENSE(1KB)
----.gitattributes(19B)
----package.json(793B)
----readme.md(3KB)
----index.js(3KB)
----.editorconfig(175B)
----contributing.md(88B)
----.npmrc(19B)

网友评论