Remove unused variables; use const
This commit is contained in:
parent
1a689805b5
commit
dbfad79431
|
@ -12,11 +12,8 @@
|
||||||
// * http://www.inwap.com/pdp10/ansicode.txt
|
// * http://www.inwap.com/pdp10/ansicode.txt
|
||||||
//
|
//
|
||||||
|
|
||||||
var assert = require('assert');
|
const assert = require('assert');
|
||||||
var binary = require('binary');
|
const miscUtil = require('./misc_util.js');
|
||||||
var miscUtil = require('./misc_util.js');
|
|
||||||
|
|
||||||
var _ = require('lodash');
|
|
||||||
|
|
||||||
exports.getFGColorValue = getFGColorValue;
|
exports.getFGColorValue = getFGColorValue;
|
||||||
exports.getBGColorValue = getBGColorValue;
|
exports.getBGColorValue = getBGColorValue;
|
||||||
|
|
Loading…
Reference in New Issue