Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/es5/uri.all.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es5/uri.all.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es5/uri.all.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esnext/schemes/mailto.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esnext/schemes/mailto.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/esnext/uri.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esnext/uri.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/punycode.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module 'punycode' {
declare module 'punycode/' {
function ucs2decode(string:string):Array<number>;
function ucs2encode(array:Array<number>):string;
function decode(string:string):string;
Expand Down
2 changes: 1 addition & 1 deletion src/schemes/mailto.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
import { pctEncChar, pctDecChars, unescapeComponent } from "../uri";
import punycode from "punycode";
import punycode from "punycode/";
import { merge, subexp, toUpperCase, toArray } from "../util";

export interface MailtoHeaders {
Expand Down
2 changes: 1 addition & 1 deletion src/uri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

import URI_PROTOCOL from "./regexps-uri";
import IRI_PROTOCOL from "./regexps-iri";
import punycode from "punycode";
import punycode from "punycode/";
import { toUpperCase, typeOf, assign } from "./util";

export interface URIComponents {
Expand Down