refactor
This commit is contained in:
parent
983dfa943e
commit
8a3f29fddb
|
@ -76,15 +76,15 @@ Program.prototype.setupTput = function() {
|
|||
};
|
||||
|
||||
Object.keys(tput).forEach(function(key) {
|
||||
if (self[key] != null) return;
|
||||
self[key] = tput[key];
|
||||
});
|
||||
if (self[key] == null) {
|
||||
self[key] = tput[key];
|
||||
}
|
||||
|
||||
Object.keys(tput).forEach(function(key) {
|
||||
if (typeof tput[key] !== 'function') {
|
||||
self.put[key] = tput[key];
|
||||
return;
|
||||
}
|
||||
|
||||
if (options.padding) {
|
||||
self.put[key] = function() {
|
||||
return tput._print(tput[key].apply(tput, arguments), write);
|
||||
|
@ -1081,7 +1081,7 @@ Program.prototype.eraseInDisplay = function(param) {
|
|||
};
|
||||
|
||||
Program.prototype.clear = function() {
|
||||
if (this.tput) return this.tput.clear();
|
||||
if (this.tput) return this.put.clear();
|
||||
return this.write('\x1b[H\x1b[J');
|
||||
// return this.ed('all');
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue