From abc3f6cf1ca73636a85804489b7e149a70ae20d2 Mon Sep 17 00:00:00 2001 From: cesarParra Date: Thu, 17 Oct 2024 07:03:10 -0400 Subject: [PATCH] Removing duplicate function declaration --- src/core/shared/utils.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/core/shared/utils.ts b/src/core/shared/utils.ts index 4df78baf..d085f799 100644 --- a/src/core/shared/utils.ts +++ b/src/core/shared/utils.ts @@ -12,15 +12,6 @@ export function skip(): Skip { }; } -/** - * Represents a file to be skipped. - */ -export function skip(): Skip { - return { - _tag: 'Skip', - }; -} - export function isSkip(value: unknown): value is Skip { return Object.prototype.hasOwnProperty.call(value, '_tag') && (value as Skip)._tag === 'Skip'; }