UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

15 lines (12 loc) 368 B
'use strict'; function validateDomain(domain) { if (!/^(?:[A-Za-z](?:[A-Za-z0-9-]*[A-Za-z0-9])?\.)*[A-Za-z](?:[A-Za-z0-9-]*[A-Za-z0-9])?(?::\d+)?$/.test( domain )) { throw new Error( "The provided domain is invalid. Ensure that the domain adheres to RFC 1035" ); } } exports.validateDomain = validateDomain; //# sourceMappingURL=utils.js.map