ti-debug
Version:
Server-side components for WebKit Remote Debugging
15 lines (10 loc) • 329 B
JavaScript
function Worker() {
}
/* ************************************************************************** */
Worker.prototype.canInspectWorkers = function (params, callback) {
callback({
result : false
});
};
/* ************************************************************************** */
module.exports = Worker;