Skip to content

Instantly share code, notes, and snippets.

@stefanocudini
Created October 18, 2021 15:30
Show Gist options
  • Save stefanocudini/80e92e4235f607ceb3418367dfe121ab to your computer and use it in GitHub Desktop.
Save stefanocudini/80e92e4235f607ceb3418367dfe121ab to your computer and use it in GitHub Desktop.
Strip Yaml Comments in nodejs
function stripComments(ymltext) {
const lines = ymltext.split(/\r?\n/).map(line => {
const trim = line.trim();
return trim[0]!=='#' ? line : '';
}).filter(line => {
return line;
});
return lines.join('\n')+'\n';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment