Exit Full View

Cavern Quest 2 / build / js / node_modules / bonjour-service / dist / lib / utils / dns-equal.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = dnsEqual;
const capitalLetterRegex = /[A-Z]/g;
function toLowerCase(input) {
    return input.toLowerCase();
}
function dnsEqual(a, b) {
    const aFormatted = a.replace(capitalLetterRegex, toLowerCase);
    const bFormatted = b.replace(capitalLetterRegex, toLowerCase);
    return aFormatted === bFormatted;
}
//# sourceMappingURL=dns-equal.js.map