Comparing version 0.7.1 to 0.7.2
@@ -163,4 +163,10 @@ /** | ||
var Buffer = null; | ||
if (typeof require !== 'undefined') { | ||
Buffer = require('buffer').Buffer; | ||
if (typeof require !== 'undefined' && typeof process !== 'undefined') { | ||
try { | ||
Buffer = require('buffer').Buffer; | ||
} | ||
catch (e) { | ||
// May be a CommonJS environment other than Node.js | ||
Buffer = null; | ||
} | ||
} | ||
@@ -167,0 +173,0 @@ |
@@ -46,3 +46,3 @@ { "name": "nodeunit" | ||
] | ||
, "version": "0.7.1" | ||
, "version": "0.7.2" | ||
, "repository" : | ||
@@ -49,0 +49,0 @@ { "type" : "git" |
Sorry, the diff of this file is not supported yet
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
917498
11290