UNPKG

constatic

Version:

Constatic is a CLI for creating and managing modern TypeScript projects, providing an organized structure and features that streamline development.

8 lines (7 loc) 162 B
// src/helpers/validation.ts function equalsIgnoringCase(textA, textB) { return textA.toLowerCase() === textB.toLowerCase(); } export { equalsIgnoringCase };