From 60643057cb3c5900b1d22afff1e1e6b47c7a72c0 Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 30 Nov 2024 17:57:27 -0500 Subject: [PATCH] eslint disable --- src/tabixIndexedFile.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tabixIndexedFile.ts b/src/tabixIndexedFile.ts index af5271a..9bdee70 100644 --- a/src/tabixIndexedFile.ts +++ b/src/tabixIndexedFile.ts @@ -11,6 +11,7 @@ import TBI from './tbi' import CSI from './csi' function isASCII(str: string) { + // eslint-disable-next-line no-control-regex return /^[\u0000-\u007F]*$/.test(str) }