UNPKG

217 BJavaScriptView Raw
1'use strict';
2
3module.exports = function (Terminal) {
4 Terminal.prototype.setgCharset = function(g, charset) {
5 this.charsets[g] = charset;
6 if (this.glevel === g) {
7 this.charset = charset;
8 }
9 };
10};