File size: 236 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
/**
* @param domain A domain object returned from the domains REST API
* @returns {number} The number of email forwards for that domain.
*/
export function getEmailForwardsCount( domain ) {
return domain?.emailForwardsCount ?? 0;
}
|