From 8ac049fb00e3a42e27eb6a32ee3897e4ed5eee8e Mon Sep 17 00:00:00 2001 From: mShan0 <96149598+mShan0@users.noreply.github.com> Date: Fri, 15 Jul 2022 13:28:57 -0700 Subject: [PATCH] fix lint error --- src/value-parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value-parser.ts b/src/value-parser.ts index 22069b792..21669153c 100644 --- a/src/value-parser.ts +++ b/src/value-parser.ts @@ -465,7 +465,7 @@ function readVariant(parser: Parser, options: ParserOptions, dataLength: number, case 'NVarChar': case 'NChar': return parser.readUInt16LE((_maxLength) => { - const _collation = readCollation(parser); + readCollation(parser); readNChars(parser, dataLength, callback); });