blob: 599cb83469c149058fa5297880717ba7b6209845 [file] [log] [blame]
'use strict';
var toLowerCase = String.prototype.toLowerCase;
module.exports = function (other) {
return toLowerCase.call(this).localeCompare(toLowerCase.call(String(other)));
};