Skip to content

Commit

Permalink
add space after ,
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Tran authored and Jacob Tran committed Jun 19, 2018
1 parent 9b8092b commit 9550882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function getEnvIdFromBranch () {
return _.trimEnd(_.truncate(branch, {
length: 13,
omission: ''
}), '-').replace(/(\r\n|\n|\r)/gm,'')
}), '-').replace(/(\r\n|\n|\r)/gm, '')
} catch (e) {
console.log('ERR: ', e)
// Do nothing
Expand Down
2 changes: 1 addition & 1 deletion test/_env.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ module.exports = function (regex) {
return env ? _.truncate(env, {
length: 13,
omission: ''
}).replace(/(\r\n|\n|\r)/gm,'') : undefined
}).replace(/(\r\n|\n|\r)/gm, '') : undefined
}

0 comments on commit 9550882

Please sign in to comment.