Skip to content

Commit

Permalink
Improved readme doc to add method parameters and returns.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-craft committed Aug 17, 2023
1 parent f2674d2 commit 34efee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ String.EMPTY;
| Name | Description | Input parameters | Return |
|:-------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------:|:---------:|
| [`isEmpty`](#isEmpty) | Indicates whether the specified string is an empty string ("") (reverse with `isNotEmpty` method). | value: `string` | `boolean` |
| [`isNullOrEmpty`](#isNullOrEmpty) | Indicates whether the specified string is null, undefined or an empty string ("") (reverse with `isNotNullOrEmpty` method). | value: `string` | `null` | `undefined` | | `boolean`
| [`isNullOrEmpty`](#isNullOrEmpty) | Indicates whether the specified string is null, undefined or an empty string ("") (reverse with `isNotNullOrEmpty` method). | value: `string` | `null` | `undefined` | `boolean` |
| [`isBlank`](#isBlank) | Indicates whether a specified string is empty, or consists only of white-space characters (reverse with `isNotBlank` method). | value: `string` | `boolean` |
| [`isNullOrBlank`](#isNullOrBlank) | Indicates whether a specified string is null, undefined, empty, or consists only of white-space characters (reverse with `isNotNullOrBlank` method). | value: `string` | `null` | `undefined` | | `boolean`
| [`isNullOrBlank`](#isNullOrBlank) | Indicates whether a specified string is null, undefined, empty, or consists only of white-space characters (reverse with `isNotNullOrBlank` method). | value: `string` | `null` | `undefined` | `boolean` |
| [`isNumber`](#isNumber) | Indicates whether the specified string is a valid numeric string (reverse with `isNotNumber` method). | value: `string` | `null` | `undefined` | `boolean` |
| [`isAlpha`](#isAlpha) | Indicates whether a given value consists only of alphabetic characters (reverse with `isNotAlpha` method). | value: `string` | `null` | `undefined` | `boolean` |
| [`isAlphaNumber`](#isAlphaNumber) | Indicates whether the specified string contains only alphabetic characters and numbers (reverse with `isNotAlphaNumber` method). | value: `string` | `null` | `undefined` | `boolean` |
Expand Down

0 comments on commit 34efee0

Please sign in to comment.