npm i stringjs
const { StringJS } = require("stringjs");
// OR
const { SJS } = require("stringjs");
// We'll use the SJS class
new SJS("myString").isLower(); // false
new SJS("myString").isUpper(); // false
new SJS("myString").match("lowerAndUpper"); // true