13 lines
443 B
JavaScript
13 lines
443 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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;
|
|
}
|
|
exports.default = dnsEqual;
|
|
//# sourceMappingURL=dns-equal.js.map
|