Whether to match globally.
A RegExp matching a URI.
Construct a URI Placeholder Regex
const uriPlaceholderRegex = Matches.Container("uri", [], Matches.URI());
console.log(uriPlaceholderRegex.test("{{uri:gopher://sdf.org:70/1/users/s.kaplan}}")); // true
console.log(uriPlaceholderRegex.test("{{uri:hello, world!}}")); // false
Generated using TypeDoc
Matches a URI using the RFC 3986 standard. Matches any scheme.