hadron-type-checker
Advanced tools
Comparing version 6.9.0 to 6.10.0
@@ -10,3 +10,3 @@ { | ||
"homepage": "https://github.com/mongodb-js/compass", | ||
"version": "6.9.0", | ||
"version": "6.10.0", | ||
"repository": { | ||
@@ -41,3 +41,3 @@ "type": "git", | ||
}, | ||
"gitHead": "2c4149184e87b8340851590663287b914d7ee63e" | ||
"gitHead": "9f5498524c3e50d351f6f36fb015ff14163a39cf" | ||
} |
@@ -211,3 +211,4 @@ const { | ||
const toBinary = (object) => { | ||
return new Binary('' + object, Binary.SUBTYPE_DEFAULT); | ||
const buffer = ArrayBuffer.isView(object) ? Buffer.from(object) : Buffer.from(toString(object), 'utf8'); | ||
return new Binary(buffer, Binary.SUBTYPE_DEFAULT); | ||
}; | ||
@@ -214,0 +215,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40763
378