2ldcheck 中文文档教程

发布于 3年前 浏览 21 项目主页 更新于 3年前

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.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文