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

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.log = function (data) { return ; };
0008 exports.log(_mixed);
0009 
0010 exports.info = function (data) { return ; };
0011 exports.info(_mixed);
0012 
0013 exports.error = function (data) { return ; };
0014 exports.error(_mixed);
0015 
0016 exports.warn = function (data) { return ; };
0017 exports.warn(_mixed);
0018 
0019 exports.dir = function (obj) { return ; };
0020 exports.dir(new Object());
0021 
0022 exports.time = function (label) { return ; };
0023 exports.time("");
0024 
0025 exports.timeEnd = function (label) { return ; };
0026 exports.timeEnd("");
0027 
0028 exports.trace = function (label) { return ; };
0029 exports.trace("");
0030 
0031 exports.assert = function (expression, message) { return ; };
0032 exports.assert(true, "");
0033