Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt

Use this file to discover all available pages before exploring further.

function isEmailInvalid(value: string): boolean;
Check if an email address is invalid.

Parameters

ParameterTypeDescription
valuestringThe email address to validate.

Returns

boolean true if the email address is invalid, false otherwise.

Example

if (isEmailInvalid("test@example")) {
  console.log("Invalid email address");
}