# dns-equal **Repository Path**: mirrors_watson/dns-equal ## Basic Information - **Project Name**: dns-equal - **Description**: A node module for comparing DNS record strings for equality - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dns-equal Compare DNS record strings for equality. Enforces [RFC 1035](https://tools.ietf.org/html/rfc1035) domain comparison. [![Build status](https://travis-ci.org/watson/dns-equal.svg?branch=master)](https://travis-ci.org/watson/dns-equal) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) ## Installation ``` npm install dns-equal --save ``` ## Usage ```js var dnsEqual = require('dns-equal') var domain1 = 'Example.COM' var domain2 = 'example.com' if (dnsEqual(domain1, domain2)) { console.log('The two domains are the same') } ``` ## License MIT