tree: 20f2c6ae86d73db623c211e54ec123cb7c7339c9 [path history] [tgz]
  1. .npmignore
  2. .travis.yml
  3. index.js
  4. LICENSE
  5. package.json
  6. README.md
  7. test.js
node_modules/dns-equal/README.md

dns-equal

Compare DNS record strings for equality. Enforces RFC 1035 domain comparison.

Build status js-standard-style

Installation

npm install dns-equal --save

Usage

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