force unicode when browserified for now. see #158.

This commit is contained in:
Christopher Jeffrey 2015-07-28 03:55:30 -07:00
parent 6e409f2789
commit 1628e7d629
1 changed files with 4 additions and 0 deletions

View File

@ -68,6 +68,10 @@ function readMethods() {
this.terminal = TERMCAP_NAME;
return this._readTermcap(this.terminal);
};
Tput.prototype.detectUnicode = function() {
return true;
};
}
readMethods = readMethods.toString().slice(24, -2)