We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffed2c4 commit 26b05b5Copy full SHA for 26b05b5
lib/bson/binary.js
@@ -28,6 +28,16 @@ if (typeof global !== 'undefined') {
28
function Binary(buffer, subType) {
29
if (!(this instanceof Binary)) return new Binary(buffer, subType);
30
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
+
41
this._bsontype = 'Binary';
42
43
if (buffer instanceof Number) {
0 commit comments