Skip to content

Commit

Permalink
Removing duplicate function declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarParra committed Oct 17, 2024
1 parent 0fca2eb commit abc3f6c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/core/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand Down

0 comments on commit abc3f6c

Please sign in to comment.