/**
* Format a line in JSDOC line by adding ' *' at the beginning and \n character at the end
*
* @example 'abc' -> ' * abc\n'
* @paramline
* @return {string}
*/module.exports = functionfmtToJSDocLine(line, { eol = true }) {
return` * ${line}${eol ? "\n" : ""}`;
};