export function checkValuesPopulated()

in src/utilities.ts [67:77]


export function checkValuesPopulated(array: ICherryPickTarget[]) {
  let emptyValues = false;

  for (var i = 0; i < array.length; i++) {
    var currentValue = array[i];
    if (!currentValue.targetBranch || !currentValue.topicBranch) {
      emptyValues = true;
    }
  }
  return emptyValues;
}