Whether to match globally.
A RegExp matching an HTTP/S URL.
Construct an HTTP URL Placeholder Regex
const httpURLPlaceholderRegex = Matches.Container("url", [], Matches.HTTPURL());
console.log(httpURLPlaceholderRegex.test("{{url:https://www.google.com}}")); // true
console.log(httpURLPlaceholderRegex.test("{{url:hello, world!}}")); // false
Generated using TypeDoc
Matches an HTTP/S URL.