| Index: lib/url.js |
| =================================================================== |
| --- a/lib/url.js |
| +++ b/lib/url.js |
| @@ -14,18 +14,18 @@ |
| * You should have received a copy of the GNU General Public License |
| * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| /** @module url */ |
| "use strict"; |
| -const {getDomain} = require("tldjs"); |
| -const punycode = require("punycode"); |
| +const {getDomain} = require("./tldjs"); |
| +const punycode = require("./punycode"); |
| let getDecodedHostname = |
| /** |
| * Gets the IDN-decoded hostname from a URL object. |
| * |
| * @param {URL} url |
| * @return {string} |
| * @static |