xusl 2be7077787 初始化 1 rok temu
..
.npmignore 2be7077787 初始化 1 rok temu
.travis.yml 2be7077787 初始化 1 rok temu
LICENSE 2be7077787 初始化 1 rok temu
README.md 2be7077787 初始化 1 rok temu
index.js 2be7077787 初始化 1 rok temu
package.json 2be7077787 初始化 1 rok temu
test.js 2be7077787 初始化 1 rok temu

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