Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var _logInline = function(alpha, bravo) {
- process.stdout.cursorTo(0, 0);
- process.stdout.write(alpha.toString() + '\n');
- process.stdout.write(bravo.toString() + '\n');
- process.stdout.clearLine();
- };
- var delay = 1000;
- var time = 0;
- setInterval(function() {
- time++;
- _logInline('alpha-' + time, 'bravo-' + time * time);
- }, delay);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement