less
Vérifie qu'un TheDate est inférieur ou égal à un seuil.
Exemple interactif
Syntaxe
Signature classique
typescript
function less<
GenericInput extends TheDate | SerializedTheDate
>(
input: GenericInput,
threshold: TheDate | SerializedTheDate
): booleanSignature currifiée
typescript
function less<
GenericInput extends TheDate | SerializedTheDate
>(
threshold: TheDate | SerializedTheDate
): (input: GenericInput) => booleanParamètres
threshold: Date limite.input:TheDateouSerializedTheDate.
Valeur de retour
true si input est avant ou égale à threshold.
