Verify if has UPPERCASE
Install
Install all functions of strman
yarn add strman
or just the isUpperCase function
yarn add strman.isuppercase
Usage
import { isUpperCase } from 'strman'
// OR
import isUpperCase from 'strman.isuppercase'
Parameters:
Name | Type | Description |
---|---|---|
value |
String | The String! |
- Source:
Returns:
String is UPPERCASE?.
- Type
- Boolean
Example
const title = 'A Javascript string manipulation library.'
isUpperCase(title)
// => false