Skip to content

Commit d17a113

Browse files
committed
Add: Add jsdoc comments for string functions
Document the string functions.
1 parent de1ccbe commit d17a113

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/gmp/utils/string.js

+21
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,22 @@
55

66
import {isDefined, isString} from './identity';
77

8+
/**
9+
* Capitalizes the first letter of a given string.
10+
*
11+
* @param {string} string - The string to capitalize.
12+
* @returns {string} The string with the first letter capitalized.
13+
*/
814
export const capitalizeFirstLetter = string =>
915
string.charAt(0).toUpperCase() + string.slice(1);
1016

17+
/**
18+
* Shortens a given text to a specified length, appending '...' if the text exceeds the length.
19+
*
20+
* @param {string} [text=''] - The text to be shortened.
21+
* @param {number} [length=60] - The maximum length of the shortened text.
22+
* @returns {string} - The shortened text.
23+
*/
1124
export const shorten = (text = '', length = 60) => {
1225
if (!isString(text)) {
1326
text = `${text}`;
@@ -46,4 +59,12 @@ export const split = (string, separator, limit) => {
4659
return splits;
4760
};
4861

62+
/**
63+
* Checks if a given string is empty.
64+
*
65+
* A string is considered empty if it is either undefined or has a length of 0.
66+
*
67+
* @param {string} string - The string to check.
68+
* @returns {boolean} - Returns true if the string is empty, otherwise false.
69+
*/
4970
export const isEmpty = string => !isDefined(string) || string.length === 0;

0 commit comments

Comments
 (0)