UNPKG

@redocly/cli

Version:

[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make

11 lines 326 B
const ALLOWED_DOMAIN_SUFFIX = '.redocly.com'; export function isAllowedScorecardProjectUrl(urlString) { try { const hostname = new URL(urlString).hostname.toLowerCase(); return hostname.endsWith(ALLOWED_DOMAIN_SUFFIX); } catch { return false; } } //# sourceMappingURL=project-url.js.map