ufo icon indicating copy to clipboard operation
ufo copied to clipboard

Add `withPathParameters`

Open Thy3634 opened this issue 9 months ago • 0 comments

Describe the feature

withPathParameters('/api/users/{userId}', { userId: 'abc' })
// '/api/users/abc'

mustache mode:

withPathParameters('/api/users/{{userId}}', { userId: 'abc' }, { interpolate = /{{([\s\S]+?)}}/g })
// '/api/users/abc'

Additional information

  • [X] Would you be willing to help implement this feature?

Thy3634 avatar May 22 '24 10:05 Thy3634