Skip to content

Commit

Permalink
[Fix] use punycode from the package and not from the node core module
Browse files Browse the repository at this point in the history
Fixes #70
  • Loading branch information
ljharb committed Jul 26, 2024
1 parent 57539a8 commit c5e1391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion url.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

'use strict';

var punycode = require('punycode');
var punycode = require('punycode/');

function Url() {
this.protocol = null;
Expand Down

0 comments on commit c5e1391

Please sign in to comment.