1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-27 21:53:14 +00:00

Added tldts.noop.ts which if used will always fallback to the original parsing

This commit is contained in:
Daniel James Smith
2021-11-11 16:49:38 +01:00
parent ecb4ac1fd9
commit a9bc646c4a

View File

@@ -0,0 +1,7 @@
export function parse(url: string, options?: object): null {
return null;
}
export function getHostName(host: string, options?: object): null {
return null;
}