- Source:
Methods
(inner) isDecimal(str) → {boolean}
- Source:
String is decimal number
Parameters:
Name | Type | Description |
---|---|---|
str |
String |
Returns:
- Type
- boolean
(inner) isBinary(str) → {boolean}
- Source:
String is binary number
Parameters:
Name | Type | Description |
---|---|---|
str |
String |
Returns:
- Type
- boolean
(inner) isOctal(str) → {boolean}
- Source:
String is octal number
Parameters:
Name | Type | Description |
---|---|---|
str |
String |
Returns:
- Type
- boolean
(inner) isHex(str) → {boolean}
- Source:
String is hexadecimal number
Parameters:
Name | Type | Description |
---|---|---|
str |
String |
Returns:
- Type
- boolean
(inner) isEmail(str) → {boolean}
- Source:
String is valid email address
Parameters:
Name | Type | Description |
---|---|---|
str |
String |
Returns:
- Type
- boolean
(inner) startsWith(str, seq) → {boolean}
- Source:
String starts with sequence polyfill
Parameters:
Name | Type | Description |
---|---|---|
str |
String | |
seq |
String |
Returns:
- Type
- boolean
(inner) endsWith(str, seq) → {boolean}
- Source:
String ends with sequence polyfill
Parameters:
Name | Type | Description |
---|---|---|
str |
String | |
seq |
String |
Returns:
- Type
- boolean
(inner) contains(str, seq) → {boolean}
- Source:
String contains sequence
Parameters:
Name | Type | Description |
---|---|---|
str |
String | |
seq |
String |
Returns:
- Type
- boolean