Skip to content

Commit

Permalink
Stop using the internal NodeJS punycode module, and instead use the p…
Browse files Browse the repository at this point in the history
…unycode package (also because the internal punycode NodeJS module is deprecated)
  • Loading branch information
gboer committed May 2, 2022
1 parent 9b10131 commit 9a12cb0
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 9a12cb0

Please sign in to comment.