Skip to content

Commit

Permalink
Merge pull request #238 from gboer/fix/actually-use-punycode-package
Browse files Browse the repository at this point in the history
Stop using the internal NodeJS punycode module
  • Loading branch information
colincasey committed May 23, 2022
2 parents 9b10131 + 9a12cb0 commit 8088047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cookie.js
Expand Up @@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
"use strict";
const punycode = require("punycode");
const punycode = require("punycode/");
const urlParse = require("url-parse");
const pubsuffix = require("./pubsuffix-psl");
const Store = require("./store").Store;
Expand Down

0 comments on commit 8088047

Please sign in to comment.