Const The string to convert.
the converted string result.
Converts the given camel case formatted string into a snake case format.
The string to convert.
the converted string result.
Camelize the given string.
the string to camelize.
the formatted result.
Camelize the given string.
the string to camelize.
the formatted result.
Capitalizes the first letter of the given string.
the string to compute.
the result string.
Capitalizes the first letter of the given string.
the string to compute.
the result string.
Capitalizes the first letter of each word of the given string.
the string to compute.
the result string.
Capitalizes the first letter of each word of the given string.
the string to compute.
the result string.
Test whether the two given string trimed value are equal.
The first value to compare.
The second value to compare.
true if the two values are equal once trimed, false otherwise.
Test whether the two given string trimed value are equal.
The first value to compare.
Optional value2: stringThe second value to compare.
true if the two values are equal once trimed, false otherwise.
Extract the domain name from the given email address.
The email address.
the corresponding domain name.
Extract the domain name from the given email address.
The email address.
the corresponding domain name.
Humanize the given string.
the string to humanize.
the formatted result.
Humanize the given string.
the string to humanize.
the formatted result.
Tests whether the given string contains only alpha characters.
The string to check.
true if the given string only contains alpha characters, false otherwise.
Tests whether the given string contains only alpha characters.
The string to check.
true if the given string only contains alpha characters, false otherwise.
Test whether the given string is either undefined, null or equal to an empty string.
The string to test.
true if the given string is blank, false otherwise.
Test whether the given string is either undefined, null or equal to an empty string.
Optional value: null | stringThe string to test.
true if the given string is blank, false otherwise.
Test whether the given string is strictly equal to an empty string.
The string to test.
true if the given string is empty, false otherwise.
Test whether the given string is strictly equal to an empty string.
The string to test.
true if the given string is empty, false otherwise.
Tests whether the given string contains only numeric characters.
The string to check.
true if the given string only contains numeric characters, false otherwise.
Tests whether the given string contains only numeric characters.
The string to check.
true if the given string only contains numeric characters, false otherwise.
Tests whether the given data parameter is a string.
The data to test.
true if the given data is a string, false otherwise.
Converts the given kebab case formatted string into a camel case format.
The string to convert.
the converted string result.
Converts the given kebab case formatted string into a camel case format.
The string to convert.
the converted string result.
Formats the given string value to contain at least the given number of characters, adding the given padding character at the end of the value if needed.
the value to format.
The desired minimum number of characters.
The padding character.
the formatted result.
Formats the given string value to contain at least the given number of characters, adding the given padding character at the end of the value if needed.
the value to format.
The desired minimum number of characters.
The padding character.
the formatted result.
Plainify the given string, converting every special character into its plain brother.
The string to convert.
a plainified string.
Plainify the given string, converting every special character into its plain brother.
The string to convert.
a plainified string.
Converts the given snake case formatted string into a camel case format.
The string to convert.
the converted string result.
Converts the given snake case formatted string into a camel case format.
The string to convert.
the converted string result.
Converted any given blank values to an empty string (""). If the given value contains a string, the method will return it unarmed.
The value to convert.
the exact given string if not blank, an empty string otherwise.
Converted any given blank values to an empty string (""). If the given value contains a string, the method will return it unarmed.
Optional value: string | falseThe value to convert.
the exact given string if not blank, an empty string otherwise.
Generated using TypeDoc
Converts the given camel case formatted string into a snake case format.