Skip to content

Commit 6be7b8d

Browse files
committed
fix(Buffer): import buffer for binary, decimal128, and fnv1a
Fixes NODE-1891
1 parent f3c2a27 commit 6be7b8d

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

lib/binary.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
'use strict';
22

3+
const Buffer = require('buffer').Buffer;
4+
35
/**
46
* A class representation of the BSON Binary type.
57
*/

lib/decimal128.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

33
let Long = require('./long');
4+
const Buffer = require('buffer').Buffer;
45

56
const PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/;
67
const PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i;

lib/fnv1a.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22

3+
const Buffer = require('buffer').Buffer;
34
const Long = require('./long');
45

56
const MASK_8 = 0xff;

0 commit comments

Comments
 (0)