gradio_app / app /frontend /node_modules /es5-ext /string /# /case-insensitive-compare.js
mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
182 Bytes
"use strict";
var toLowerCase = String.prototype.toLowerCase;
module.exports = function (other) {
return toLowerCase.call(this).localeCompare(toLowerCase.call(String(other)));
};