UNPKG

esformatter-spaced-lined-comment

Version:

esformatter plugin for adding a space as the first character in a line comment

8 lines (6 loc) 168 B
'use strict'; module.exports.tokenBefore = function(token) { if (token.type === 'LineComment' && token.value.match(/^\S/)) { token.raw = '// ' + token.value; } };