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.stringify = function (object, sep, eq) { return ""; };
0008 exports.stringify(new Object(), "", "");
0009 
0010 exports.parse = function (str, sep, eq, options) { return new Object(); };
0011 exports.parse("", "", "", new Object());
0012 
0013 exports.escape = new Function();
0014 
0015 exports.unescape = new Function();
0016