mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 03:14:07 +08:00
17 lines
253 B
JavaScript
17 lines
253 B
JavaScript
/**
|
|
* Created by nuintun on 2015/11/24.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (Terminal){
|
|
/**
|
|
* setgLevel
|
|
* @param g
|
|
*/
|
|
Terminal.prototype.setgLevel = function (g){
|
|
this.glevel = g;
|
|
this.charset = this.charsets[g];
|
|
};
|
|
};
|