• 解析扩展JSONstring ,构造该JavaScript 描述的string 值或对象。

    参数

    • text : string
    • Optional options选项

    返回SerializableTypes

    例子

    const { EJSON } = require('bson');
    const text = '{ "int32": { "$numberInt": "10" } }';

    // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } }
    console.log(EJSON.parse(text, { relaxed: false }));

    // prints { int32: 10 }
    console.log(EJSON.parse(text));

使用TypeDoc生成