We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c2a27 commit 6be7b8dCopy full SHA for 6be7b8d
lib/binary.js
@@ -1,5 +1,7 @@
1
'use strict';
2
3
+const Buffer = require('buffer').Buffer;
4
+
5
/**
6
* A class representation of the BSON Binary type.
7
*/
lib/decimal128.js
@@ -1,6 +1,7 @@
let Long = require('./long');
const PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/;
const PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i;
lib/fnv1a.js
@@ -1,5 +1,6 @@
const Long = require('./long');
const MASK_8 = 0xff;
0 commit comments