UNPKG

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