export const greaterThan =
  (compareAgainst: ConfigKey, errorMessage = McuErrors.TOO_LOW) =>
    (_key: ConfigKey, val: number, state: McuParams): Result => {
      const minimum = state[compareAgainst] || 0;
      return (val > minimum) ? OK : NO(errorMessage);