Commit 7d3fc4d7 authored by Dan Allen's avatar Dan Allen
Browse files

minor code style change

parent 664d433d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1030,7 +1030,7 @@ function transformGitCloneError (err, displayUrl, authRequested) {
}

function splitRefPatterns (str) {
  return ~str.indexOf('{') ? str.split(VENTILATED_CSV_RX) : str.split(CSV_RX)
  return str.split(~str.indexOf('{') ? VENTILATED_CSV_RX : CSV_RX)
}

function camelCaseKeys (o, stopPaths = [], p = '') {