export const toBeShorterThan: ToBeShorterThan = (otherString, actual) =>
  toBeString(actual) &&
  toBeString(otherString) &&
  actual.length < otherString.length;