fix(lint): correct lint errors

This commit is contained in:
Ahmad Nassri
2021-04-12 16:28:14 -04:00
parent 84f664de14
commit f78d8b3e5e

View File

@@ -794,11 +794,11 @@ export const configureSvgSize = function(svgElem, height, width, useMaxWidth) {
}; };
export const initIdGeneratior = class iterator { export const initIdGeneratior = class iterator {
constructor (deterministic, seed) { constructor(deterministic, seed) {
this.deterministic = deterministic; this.deterministic = deterministic;
this.seed = seed; this.seed = seed;
this.count = seed ? seed.length : 0 this.count = seed ? seed.length : 0;
} }
next() { next() {