Remove const

This commit is contained in:
Chinmay Pandhare
2017-09-05 19:45:06 +05:30
parent 5b860dee83
commit f69f8461a7
8 changed files with 14 additions and 14 deletions

View File

@@ -17,7 +17,7 @@ module.exports = function GreenChannel(options,UI) {
// Tell UI that a step is being drawn.
UI.onDraw(options.step);
const step = this;
var step = this;
function changePixel(r, g, b, a) {
return [255-r, 255-g, 255-b, a];