@alvarocastro/is-upper-case
v1.0.2
Published
Simple tool to check if a string is uppercase
Downloads
9
Maintainers
Readme
is-upper-case
Simple tool to check if a string is uppercase.
Install
npm install @alvarocastro/is-upper-case
Usage
const isUpperCase = require('@alvarocastro/is-upper-case');
isUpperCase('SOMETHING');
// => true
isUpperCase('something else');
// => false
isUpperCase('Another stuff');
// => false
isUpperCase(text)
text
Type: string
String to test.