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 5a1706a commit ad21887Copy full SHA for ad21887
src/array/contains_only_empty_strings.ts
@@ -16,7 +16,7 @@
16
* // true
17
* ```
18
* @param input The input array to check
19
- * @return If the array is empty
+ * @returns If the array only contains empty strings
20
*/
21
export default function containsOnlyEmptyStrings(input : string[]) : boolean {
22
return input.join('') === '';
0 commit comments