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 993fe0f commit 81c84a8Copy full SHA for 81c84a8
src/are/lib/are-string.func.ts
@@ -1,7 +1,7 @@
1
import { check } from './check-args.func';
2
/**
3
- * Checks if any of all the values are a `string`.
4
- * @param value Any values to check.
5
- * @returns A `boolean` indicating whether or not all the values are an `Array`.
+ * Checks if all the values are a `string`.
+ * @param value A rest parameter of any type to check.
+ * @returns A `boolean` indicating whether or not all the values are `string`.
6
*/
7
export const areString = (...value: any): boolean => check('string', ...value);
0 commit comments