aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/string/#/case-insensitive-compare.js
blob: 5d961a5e38acfa51e1da846bae9b9620dc18df95 (plain)
1
2
3
4
5
6
7
"use strict";

var toLowerCase = String.prototype.toLowerCase;

module.exports = function (other) {
	return toLowerCase.call(this).localeCompare(toLowerCase.call(String(other)));
};