Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/aether/deps.ts>Bson.EJSON.parse

A Deno library to interface with the Discord API
Latest
function Bson.EJSON.parse
import { Bson } from "https://deno.land/x/aether@v0.0.3/deps.ts";
const { parse } = Bson.EJSON;

Parse an Extended JSON string, constructing the JavaScript value or object described by that string.

Examples

Example 1

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

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

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

Parameters

text: string
optional
options: Options