D
D
Denchik2015-12-10 00:16:12
JavaScript
Denchik, 2015-12-10 00:16:12

SublimeREPL node how to cancel the output of unnecessary information?

Installed sublimeREPL and when you run the js script, it constantly throws out some kind of debug information.
How can I disable this information?
Here is an example output -

> console.log("hello");

setTimeout(function(){
  console.log("world");
}, 5000);

console.log("Bye");
hello
undefined
> > ... ... { _called: false,
  _idleTimeout: 5000,
  _idlePrev: 
   Timer {
     '0': [Function: listOnTimeout],
     _idleNext: [Circular],
     _idlePrev: [Circular],
     msecs: 5000 },
  _idleNext: 
   Timer {
     '0': [Function: listOnTimeout],
     _idleNext: [Circular],
     _idlePrev: [Circular],
     msecs: 5000 },
  _idleStart: 63765,
  _onTimeout: [Function],
  _repeat: null,
  domain: 
   Domain {
     domain: null,
     _events: { error: [Function] },
     _eventsCount: 1,
     _maxListeners: undefined,
     members: [] } }
> > Bye
undefined
> world

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question