ti-debug
Version:
Server-side components for WebKit Remote Debugging
17 lines (11 loc) • 383 B
JavaScript
function Console() {
}
/* ************************************************************************** */
Console.prototype.enable = function (params, callback) {
callback(null);
};
Console.prototype.clearMessages = function (params, callback) {
callback(null);
};
/* ************************************************************************** */
module.exports = Console;