pirelenito/git-revision-webpack-plugin

View on GitHub
src/helpers/remove-empty-lines.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default function removeEmptyLines(string: string) {
  return string.replace(/[\s\r\n]+$/, '')
}