関数解析

  • 拡張 JSON string を解析し、その string によって記述される JavaScript 値またはオブジェクトを構築します。

    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));

    パラメーター

    • テキスト: string
    • Optional options: Options

    SerializationableTypes を返します

TypeDocを使用して生成