UNPKG

225 BJavaScriptView Raw
1function logParse(stdout) {
2 //git output contains exactly one hash per line, so little processing is required.
3 return stdout.split('\n').map(function (l) { return l.trim() });
4}
5
6module.exports.logParse = logParse;
\No newline at end of file