softkave-js-utils
Version:
JavaScript & Typescript utility functions, types, and classes
9 lines • 351 B
JavaScript
export function isLowercaseEqual(str00, str01, useLowercase = true) {
if (useLowercase) {
return (str00 === null || str00 === void 0 ? void 0 : str00.toLowerCase()) === (str01 === null || str01 === void 0 ? void 0 : str01.toLowerCase());
}
else {
return str00 === str01;
}
}
//# sourceMappingURL=isLowercaseEqual.js.map