dependabit / utils/src
utils/src
Main export file for utils package
Utils
| Function | Description |
|---|---|
| camelCase | Converts a string to camelCase. |
| capitalize | Capitalizes the first letter of a string. |
| chunk | Splits an array into consecutive chunks of the given size. |
| flatten | Flattens a nested array up to the given depth. |
| groupBy | Groups array elements by a key function. |
| kebabCase | Converts a string to kebab-case. |
| truncate | Truncates a string to a maximum length, appending a suffix if truncated. |
| unique | Removes duplicates from an array using Set equality. |