functionfoundry
Version:
Pure function JavaScript library
18 lines (16 loc) • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = eq;
// Copyright 2015 JC Fisher
// EQ compares two values and returns a boolean value.
function eq(a, b) {
// String comparisions are case-insensitive
if (typeof a === "string" && typeof b === "string") {
return a.toLowerCase() === b.toLowerCase();
} else {
return a === b;
}
}
module.exports = exports["default"];