Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DeserializeOptions

Index

Properties

evalFunctions?: boolean

evaluate functions in the BSON document scoped to the object deserialized.

cacheFunctions?: boolean

cache evaluated functions for reuse.

cacheFunctionsCrc32?: boolean

use a crc32 code for caching, otherwise use the string of the function.

deprecated

this option to use the crc32 function never worked as intended due to the fact that the crc32 function itself was never implemented.

promoteLongs?: boolean

when deserializing a Long will fit it into a Number if it's smaller than 53 bits

promoteBuffers?: boolean

when deserializing a Binary will return it as a node.js Buffer instance.

promoteValues?: boolean

when deserializing will promote BSON values to their Node.js closest equivalent types.

fieldsAsRaw?: <internal>.Document

allow to specify if there what fields we wish to return as unserialized raw buffer.

bsonRegExp?: boolean

return BSON regular expressions as BSONRegExp instances.

allowObjectSmallerThanBufferSize?: boolean

allows the buffer to be larger than the parsed BSON object

index?: number

Offset into buffer to begin reading document from

raw?: boolean
validation?: { utf8: boolean | <internal>.Record<string, true> | <internal>.Record<string, false> }

Allows for opt-out utf-8 validation for all keys or specified keys. Must be all true or all false.

example
// disables validation on all keys
validation: { utf8: false }

// enables validation only on specified keys a, b, and c
validation: { utf8: { a: true, b: true, c: true } }

// disables validation only on specified keys a, b
validation: { utf8: { a: false, b: false } }

Type declaration

Generated using TypeDoc