mirror of
https://github.com/LukeHagar/slinky.git
synced 2025-12-06 04:21:20 +00:00
10 lines
382 B
TypeScript
10 lines
382 B
TypeScript
// Sample TypeScript file with URLs
|
|
const url1: string = "https://example.com";
|
|
const url2: string = "https://go.dev/doc/";
|
|
const urlBad: string = "http://example..com";
|
|
const urlMissing: string = "https://";
|
|
const urlNonexistent: string = "https://this-domain-does-not-exist-987654321.com";
|
|
const urlPlaceholder: string = "https://{tenant}.api.ideidentitynow.com/v3/transforms";
|
|
|
|
|