UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

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; }