UNPKG

eslint-plugin-comment-length

Version:

An ESLint plugin that provides rules that limit the line length of your comments

4 lines (3 loc) 125 B
export function mergeLines(a: string, b: string, separator = " "): string { return `${a.trim()}${separator}${b.trim()}`; }