Make Styler strict

This commit is contained in:
Christian Paul 2017-11-24 01:42:09 -08:00
parent fd40b57f51
commit 9d9ef31f7b

View File

@ -8,11 +8,11 @@
Compiles layer filter instructions into a chain of true/false returning Compiles layer filter instructions into a chain of true/false returning
anonymous functions to improve rendering speed compared to realtime parsing. anonymous functions to improve rendering speed compared to realtime parsing.
*/ */
var Styler; 'use strict';
const fs = require('fs'); const fs = require('fs');
module.exports = class Styler { class Styler {
constructor(file) { constructor(file) {
this.styleById = {}; this.styleById = {};
this.styleByLayer = {}; this.styleByLayer = {};
@ -132,3 +132,5 @@ module.exports = class Styler {
} }
} }
} }
module.exports = Styler;