1.0.3 • Published 9 months ago
@arzoka/check-lettercase v1.0.3
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');