2015-11-24 19:00:34 +08:00

9 lines
166 B
JavaScript

'use strict';
module.exports = function (Terminal){
Terminal.prototype.setgLevel = function (g){
this.glevel = g;
this.charset = this.charsets[g];
};
};