mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-08 04:04:04 +08:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (Terminal){
|
|
Terminal.prototype.setgLevel = function (g){
|
|
this.glevel = g;
|
|
this.charset = this.charsets[g];
|
|
};
|
|
};
|