LAPTOP-UBJMM5MG\user d7428fd373 更新 před 1 rokem
..
.npmignore d7428fd373 更新 před 1 rokem
.travis.yml d7428fd373 更新 před 1 rokem
LICENSE d7428fd373 更新 před 1 rokem
README.md d7428fd373 更新 před 1 rokem
index.js d7428fd373 更新 před 1 rokem
package.json d7428fd373 更新 před 1 rokem
test.js d7428fd373 更新 před 1 rokem

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