Skip to content

Commit ea4ce0b

Browse files
authored
Update and rename is_empty.ts to contains_only_empty_strings.ts
1 parent 6df52fe commit ea4ce0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array/is_empty.ts renamed to src/array/contains_only_empty_strings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
* @param input The input array to check
1919
* @return If the array is empty
2020
*/
21-
export default function isEmpty(input : string[]) : boolean {
21+
export default function containsOnlyEmptyStrings(input : string[]) : boolean {
2222
return input.join('') === '';
2323
}

0 commit comments

Comments
 (0)