Remove unused variables; use const

This commit is contained in:
Bryan Ashby 2016-04-18 21:20:18 -06:00
parent 1a689805b5
commit dbfad79431
1 changed files with 2 additions and 5 deletions

View File

@ -12,11 +12,8 @@
// * http://www.inwap.com/pdp10/ansicode.txt
//
var assert = require('assert');
var binary = require('binary');
var miscUtil = require('./misc_util.js');
var _ = require('lodash');
const assert = require('assert');
const miscUtil = require('./misc_util.js');
exports.getFGColorValue = getFGColorValue;
exports.getBGColorValue = getBGColorValue;