文件名称:golden-fleece:解析和处理JSON5字符串
文件大小:63KB
文件格式:ZIP
更新时间:2024-06-04 01:06:49
TypeScript
金羊毛 解析字符串(类似于JSON,但不太严格)。 为什么? 对于 ,我们希望在右下方的面板中允许任意数据,但我们也想更新该对象而不将其重新格式化为JSON。 用法 使用npm install golden-fleece并将其导入到您的应用中: import * as fleece from 'golden-fleece' ; fleece.parse(str,[选项]) const ast = fleece . parse ( `true` ) ; // { start: 0, end: 4, type: 'Literal', raw: 'true', value: true } 返回的AST符合 。 您可以选择传递在遇到值或注释时触发的回调: const ast = fleece . parse ( str , { onComment : comment => {