kiruthiga 55473b7e7c initial push 5 天之前
..
.npmignore 55473b7e7c initial push 5 天之前
.travis.yml 55473b7e7c initial push 5 天之前
LICENSE 55473b7e7c initial push 5 天之前
README.md 55473b7e7c initial push 5 天之前
index.js 55473b7e7c initial push 5 天之前
package.json 55473b7e7c initial push 5 天之前
test.js 55473b7e7c initial push 5 天之前

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