@arzoka/check-lettercase
v1.0.3
Published
A package that returns true or false dependant on the given string being uppercase or lowercase.
Readme
check-lettercase
a very small package that simply checks if a char or string is uppercase or lowercase
I made this just so that I didn't have to answer the same question everytime.
I in no way condone the usage of packages like this for such small functions.
Usage
const checkLettercase = require('checklettercase');
const isUpperCase = checkLettercase.isUpperCase('A');
const isLowerCase = checkLettercase.isLowerCase('a');