12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
- /**
- * A class representation of the BSON Double type.
- */
- class Double {
- /**
- * Create a Double type
- *
- * @param {number} value the number we want to represent as a double.
- * @return {Double}
- */
- constructor(value) {
- this.value = value;
- }
- /**
- * Access the number value.
- *
- * @method
- * @return {number} returns the wrapped double number.
- */
- valueOf() {
- return this.value;
- }
- /**
- * @ignore
- */
- toJSON() {
- return this.value;
- }
- /**
- * @ignore
- */
- toExtendedJSON(options) {
- if (options && options.relaxed && isFinite(this.value)) return this.value;
- return { $numberDouble: this.value.toString() };
- }
- /**
- * @ignore
- */
- static fromExtendedJSON(doc, options) {
- return options && options.relaxed
- ? parseFloat(doc.$numberDouble)
- : new Double(parseFloat(doc.$numberDouble));
- }
- }
- Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' });
- module.exports = Double;
|