We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4df807 commit f3e6532Copy full SHA for f3e6532
src/index.ts
@@ -22,5 +22,6 @@ export { isNaN } from './isNaN'
22
export { isSymbol } from './isSymbol'
23
export { isNull } from './isNull'
24
export { isReg } from './isReg'
25
+export { isBool } from './isBool'
26
export { VFetch } from './VFetch'
27
export { interceptError } from './interceptError'
src/isBool.ts
@@ -0,0 +1,3 @@
1
+export function isBool(value: any): boolean {
2
+ return typeof value === 'boolean'
3
+}
0 commit comments