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