We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9802fbe commit 4a9e58aCopy full SHA for 4a9e58a
packages/core/src/predicate/index.ts
@@ -1,5 +1,13 @@
1
+export { isBoolean } from './isBoolean.ts';
2
+export { isDate } from './isDate.ts';
3
export { isEqual } from './isEqual.ts';
4
+export { isFunction } from './isFunction.ts';
5
export { isNil } from './isNil.ts';
6
export { isNotNil } from './isNotNil.ts';
7
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';
12
export { isUndefined } from './isUndefined.ts';
13
+export { isWindow } from './isWindow.ts';
0 commit comments