Skip to content

Commit 9a12cb0

Browse files
committed
Stop using the internal NodeJS punycode module, and instead use the punycode package (also because the internal punycode NodeJS module is deprecated)
1 parent 9b10131 commit 9a12cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cookie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* POSSIBILITY OF SUCH DAMAGE.
3030
*/
3131
"use strict";
32-
const punycode = require("punycode");
32+
const punycode = require("punycode/");
3333
const urlParse = require("url-parse");
3434
const pubsuffix = require("./pubsuffix-psl");
3535
const Store = require("./store").Store;

0 commit comments

Comments
 (0)