From 68e69fafe526a9ecb4e034729f296f78569842a2 Mon Sep 17 00:00:00 2001 From: isaacs Date: Sat, 29 Apr 2023 22:16:05 -0700 Subject: [PATCH] chore: remove istanbul comments --- lib/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/index.ts b/lib/index.ts index 0fbb1607..9f517389 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -361,7 +361,6 @@ function _minWidth (col: Column) { function getWindowWidth (): number { /* c8 ignore start */ - /* istanbul ignore next: depends on terminal */ if (typeof process === 'object' && process.stdout && process.stdout.columns) { return process.stdout.columns } @@ -385,7 +384,6 @@ function alignCenter (str: string, width: number): string { const strWidth = mixin.stringWidth(str) /* c8 ignore start */ - /* istanbul ignore next */ if (strWidth >= width) { return str }