File indexing completed on 2024-05-19 04:42:04

0001 /*
0002     SPDX-FileCopyrightText: 2014 Denis Steckelmacher <steckdenis@yahoo.fr>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 exports.parse = function (urlStr, parseQueryString, slashesDenoteHost) { return {href: "", protocol: "", auth: "", hostname: "", port: 1, host: "", pathname: "", search: "", query: new Object(), hash: ""}; };
0008 exports.parse("", true, "");
0009 
0010 exports.format = function (urlObj) { return ""; };
0011 exports.format(new Object());
0012 
0013 exports.resolve = function (from, to) { return ""; };
0014 exports.resolve("", "");
0015