objectDoesNotContain(object, objectName, properties) | Throws if any of the property names listed in properties are not in object |
invalidDateInMs(value, argumentName) | Throws if: - value is not a number - value can not be parsed by new Date(value) |
invalidFirestoreId(id, objectName) | Throws if: - not a valid Firestore id (20 characters a-z, A-Z, and 0-9) |
invalidShortDate(value, argumentName) | Expects a date with the format (YYYY-MM-DD). Throws if: - value is not a string with exactly 10 characters - value can not be parsed by new Date(value) |
invalidTrimmedNonEmptyString(value, argumentName) | Throws if: - value is not a string - value is not trimmed - string is empty |