mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-17 14:29:48 +02:00
fix(lint): correct lint errors
This commit is contained in:
@@ -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() {
|
||||||
|
Reference in New Issue
Block a user