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