export const isGte = (threshold) => {
  return ({value, getter}) => {
    return compareToThreshold(value, gte, threshold, getter, Errors.isGte)
  }
}