We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When partially expanded templates format their output without dropping un-expanded variables it is not a valid URI Template.
const template = UriTemplate.parse('{/seg1,seg2,seg3}') .expand({ seg1: 'a', seg3: 'c' }); .format();
Should output /a{/seg2}/c but outputs /a,seg2/c
/a{/seg2}/c
/a,seg2/c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When partially expanded templates format their output without dropping un-expanded variables it is not a valid URI Template.
Should output
/a{/seg2}/c
but outputs/a,seg2/c
The text was updated successfully, but these errors were encountered: