Skip to content

Commit 4a9e58a

Browse files
committed
chore: update export predicate function
1 parent 9802fbe commit 4a9e58a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

packages/core/src/predicate/index.ts

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
export { isBoolean } from './isBoolean.ts';
2+
export { isDate } from './isDate.ts';
13
export { isEqual } from './isEqual.ts';
4+
export { isFunction } from './isFunction.ts';
25
export { isNil } from './isNil.ts';
36
export { isNotNil } from './isNotNil.ts';
47
export { isNull } from './isNull.ts';
8+
export { isNumber } from './isNumber.ts';
9+
export { isObject } from './isObject.ts';
10+
export { isRegExp } from './isRegExp.ts';
11+
export { isString } from './isString.ts';
512
export { isUndefined } from './isUndefined.ts';
13+
export { isWindow } from './isWindow.ts';

0 commit comments

Comments
 (0)