@@ -160,7 +160,7 @@ Writer.prototype.writeBuffer = function(buf, tag) {
Writer.prototype.writeStringArray = function(strings) {
- if ((!strings instanceof Array))
+ if (!(strings instanceof Array))
throw new TypeError('argument must be an Array[String]');
var self = this;
See: https://github.com/mcavage/node-asn1/pull/13