Skip to content

Commit 7346928

Browse files
committed
Merge branch 'master' into develop
# Conflicts: # src/core/changelog/generate-change-log.ts
2 parents fa0b5c5 + 488ee24 commit 7346928

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/core/shared/utils.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ export function skip(): Skip {
1313
};
1414
}
1515

16+
/**
17+
* Represents a file to be skipped.
18+
*/
19+
export function skip(): Skip {
20+
return {
21+
_tag: 'Skip',
22+
};
23+
}
24+
1625
export function isSkip(value: unknown): value is Skip {
1726
return Object.prototype.hasOwnProperty.call(value, '_tag') && (value as Skip)._tag === 'Skip';
1827
}

0 commit comments

Comments
 (0)