UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

9 lines (8 loc) • 214 B
export { compareString }; function compareString(str1, str2) { if (str1.toLowerCase() < str2.toLowerCase()) return -1; if (str1.toLowerCase() > str2.toLowerCase()) return 1; return 0; }