UNPKG

vike

Version:

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

11 lines (10 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.compareString = compareString; function compareString(str1, str2) { if (str1.toLowerCase() < str2.toLowerCase()) return -1; if (str1.toLowerCase() > str2.toLowerCase()) return 1; return 0; }