Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

fix typo #1

Merged
merged 3 commits into from
Jun 1, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/ber/writer.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Writer.prototype.writeBuffer = function (buf, tag) {


Writer.prototype.writeStringArray = function (strings) {
if ((!strings instanceof Array))
if (!(strings instanceof Array))
UziTech marked this conversation as resolved.
Show resolved Hide resolved
throw new TypeError('argument must be an Array[String]');

var self = this;
Expand Down