2ldcheck 中文文档教程
2ldcheck
这个模块做一个简单的检查,看看一个域名,比如 some.site.com.au,是否是二级域名。 第二 级别域的形式为“*.co.uk”或“*.com.au”。
Usage
Install
npm i 2ldcheck -S
Use
const isSecondLevelDomain = require('2ldcheck');
console.log(isSecondLevelDomain('domain.co.nz')); // prints true
console.log(isSecondLevelDomain('domain.com')); // prints false
Warning
这个模块远未完成。 一些 2LD 仍然缺失。 如果你愿意,可以随意添加它们。 我很高兴 合并任何更改。
使用此模块需要您自担风险。
2ldcheck
This module does a simple check to see whether a domain name, like some.site.com.au, is a second level domain. Second level domains are of the form '*.co.uk', or '*.com.au'.
Usage
Install
npm i 2ldcheck -S
Use
const isSecondLevelDomain = require('2ldcheck');
console.log(isSecondLevelDomain('domain.co.nz')); // prints true
console.log(isSecondLevelDomain('domain.com')); // prints false
Warning
This module is far from complete. Some 2LDs are still missing. Feel free to add them if you wan to. I'm happy to incorporate any changes.
Use this module at your own risk.
更多