Skip to content

Commit b750743

Browse files
committed
fix: remove invalid type check
1 parent 1e20607 commit b750743

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

@commitlint/load/src/utils/load-parser-opts.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ function isObjectLike(obj: unknown): obj is Record<string, unknown> {
55
}
66

77
function isPromiseLike(obj: unknown): obj is Promise<unknown> {
8-
return (
9-
(typeof obj === 'object' || typeof obj === 'function') &&
10-
typeof (obj as any).then === 'function'
11-
);
8+
return typeof obj === 'object' && typeof (obj as any).then === 'function';
129
}
1310

1411
function isParserOptsFunction<T extends ParserPreset>(

0 commit comments

Comments
 (0)