Skip to content

Commit 26b05b5

Browse files
authored
fix(binary): add type checking for buffer
1 parent ffed2c4 commit 26b05b5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/bson/binary.js

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@ if (typeof global !== 'undefined') {
2828
function Binary(buffer, subType) {
2929
if (!(this instanceof Binary)) return new Binary(buffer, subType);
3030

31+
if (
32+
buffer != null &&
33+
!(typeof buffer === 'string') &&
34+
!Buffer.isBuffer(buffer) &&
35+
!(buffer instanceof Uint8Array) &&
36+
!Array.isArray(buffer)
37+
) {
38+
throw new Error('only String, Buffer, Uint8Array or Array accepted');
39+
}
40+
3141
this._bsontype = 'Binary';
3242

3343
if (buffer instanceof Number) {

0 commit comments

Comments
 (0)