文件名称:get-if-has-json:从有效的JSON对象前后包含一堆废话的字符串中提取JSON
文件大小:43KB
文件格式:ZIP
更新时间:2024-04-29 23:56:01
TypeScript
得到如果有的JSON 从有效的JSON对象前后包含一堆废话的字符串中提取JSON。 安装 npm i get-if-has-json 用法 const getIfHasJSON = require ( 'get-if-has-json' ) const obj = { foo : 'bar' , john : null } getIfHasJSON ( 'foo' + JSON . stringify ( { } ) + 'bar' ) // {} getIfHasJSON ( 'salkdj fslkf slkdfsd ' + JSON . stringify ( obj ) + '^&%$&^(*&^*&^' ) // {"foo":"bar","john":null} 原料药 参数 str {String}包含JSON对象的字符串。 退货 {String}有效的可解析JSON字符串
【文件预览】:
get-if-has-json-main
----.gitignore(2KB)
----package.json(846B)
----package-lock.json(149KB)
----src()
--------index.ts(508B)
----tsconfig.json(351B)
----.github()
--------workflows()
----.prettierignore(28B)
----.prettierrc.js(236B)
----README.md(642B)
----lib()
--------index.js(606B)
--------index.js.map(785B)
--------index.d.ts.map(179B)
--------index.d.ts(123B)
----nodemon.json(95B)
----test()
--------index.ts(714B)