summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/uuid/v4.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/uuid/v4.js')
-rw-r--r--deps/npm/node_modules/uuid/v4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/node_modules/uuid/v4.js b/deps/npm/node_modules/uuid/v4.js
index 1f07be1c53..38b6f76a98 100644
--- a/deps/npm/node_modules/uuid/v4.js
+++ b/deps/npm/node_modules/uuid/v4.js
@@ -5,7 +5,7 @@ function v4(options, buf, offset) {
var i = buf && offset || 0;
if (typeof(options) == 'string') {
- buf = options === 'binary' ? new Array(16) : null;
+ buf = options == 'binary' ? new Array(16) : null;
options = null;
}
options = options || {};