mongodb-core
Advanced tools
Comparing version 1.0.0-alpha5 to 1.0.0-alpha6
@@ -75,5 +75,5 @@ var f = require('util').format | ||
errorObject = err; | ||
} else if(r.result['$err']) { | ||
} else if(r && typeof r == 'object' && r.result['$err']) { | ||
errorObject = r.result; | ||
} else if(r.result['errmsg']) { | ||
} else if(r && typeof r == 'object' && r.result['errmsg']) { | ||
errorObject = r.result; | ||
@@ -80,0 +80,0 @@ } else { |
{ | ||
"name": "mongodb-core", | ||
"version": "1.0.0-alpha5", | ||
"version": "1.0.0-alpha6", | ||
"description": "Core MongoDB driver functionality, no bells and whistles and meant for integration not end applications", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
295766