diff --git a/README.md b/README.md index e890efb8..f22f142a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# tldts [![Build Status][badge-ci]](http://travis-ci.org/remusao/tld.js) ![][badge-downloads] +# tldts [![Build Status][badge-ci]](http://travis-ci.org/remusao/tldts) ![][badge-downloads] > `tldts` is a Typescript library to work against complex domain names, subdomains and well-known TLDs. It is a fork of the very good [tld.js](https://github.com/oncletom/tld.js) JavaScript library. @@ -250,7 +250,7 @@ This project exists thanks to all the people who contributed to `tld.js` as well [MIT License](LICENSE). -[badge-ci]: https://secure.travis-ci.org/remusao/tld.js.svg?branch=master +[badge-ci]: https://secure.travis-ci.org/remusao/tldts.svg?branch=master [badge-downloads]: https://img.shields.io/npm/dm/tldts.svg [public suffix list]: https://publicsuffix.org/list/ diff --git a/package.json b/package.json index 12c5aca9..7ad3f36a 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,18 @@ { "name": "tldts", - "description": "JavaScript API to work against complex domain names, subdomains and URIs.", + "description": "Library to work against complex domain names, subdomains and URIs.", "version": "3.0.0", - "homepage": "https://github.com/remusao/tld.js", + "homepage": "https://github.com/remusao/tldts", "author": "RĂ©mi Berson", "contributors": [ "Thomas Parisot (https://oncletom.io)" ], "repository": { "type": "git", - "url": "git://github.com/remusao/tld.js.git" + "url": "git://github.com/remusao/tldts.git" }, "bugs": { - "url": "https://github.com/remusao/tld.js/issues" + "url": "https://github.com/remusao/tldts/issues" }, "engines": { "node": ">= 6" diff --git a/tldts.ts b/tldts.ts index 622f0f22..6b6be676 100644 --- a/tldts.ts +++ b/tldts.ts @@ -104,7 +104,7 @@ function parseImplFactory(trie: Trie = getRules()) { /** * Process a given url and extract all information. This is a higher level API - * around private functions of `tld.js`. It allows to remove duplication (only + * around private functions of `tldts`. It allows to remove duplication (only * extract host from url once for all operations) and implement some early * termination mechanism to not pay the price of what we don't need (this * simulates laziness at a lower cost).