export const isPositive = ({value, getter}) => {
  if (isEmptyValue(value)) return null
  const num = getter(value)
  return num < 0 ? Errors.isPositive : null
}