Skip to content

Commit 81c84a8

Browse files
docs(areString): fix description
1 parent 993fe0f commit 81c84a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/are/lib/are-string.func.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { check } from './check-args.func';
22
/**
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`.
3+
* Checks if all the values are a `string`.
4+
* @param value A rest parameter of any type to check.
5+
* @returns A `boolean` indicating whether or not all the values are `string`.
66
*/
77
export const areString = (...value: any): boolean => check('string', ...value);

0 commit comments

Comments
 (0)