#931 Aligning code standard

This commit is contained in:
knsv
2019-09-12 12:55:20 -07:00
parent ad5669b523
commit e14922f15c
3 changed files with 115 additions and 105 deletions

View File

@@ -1,40 +1,40 @@
/**
*
*/
import { logger } from '../../logger'
import { logger } from '../../logger';
let sections = {}
let title = ''
let sections = {};
let title = '';
const addSection = function (id, value) {
const addSection = function(id, value) {
if (typeof sections[id] === 'undefined') {
sections[id] = value
logger.debug('Added new section :', id)
sections[id] = value;
logger.debug('Added new section :', id);
// console.log('Added new section:', id, value)
}
}
const getSections = () => sections
};
const getSections = () => sections;
const setTitle = function (txt) {
title = txt
}
const setTitle = function(txt) {
title = txt;
};
const getTitle = function () {
return title
}
const cleanupValue = function (value) {
const getTitle = function() {
return title;
};
const cleanupValue = function(value) {
if (value.substring(0, 1) === ':') {
value = value.substring(1).trim()
return Number(value.trim())
value = value.substring(1).trim();
return Number(value.trim());
} else {
return Number(value.trim())
return Number(value.trim());
}
}
};
const clear = function () {
sections = {}
title = ''
}
const clear = function() {
sections = {};
title = '';
};
// export const parseError = (err, hash) => {
// global.mermaidAPI.parseError(err, hash)
// }
@@ -47,4 +47,4 @@ export default {
setTitle,
getTitle
// parseError
}
};