yarn add path-extract
const extract = require('path-extract')
extract('/user/:username/post/:id', '/user/egoist/post/1')
//=> params:
{
username: 'egoist',
id: '1'
}
extract('/user/*', '/user/egoist/post/1')
//=> params:
{
'*': 'egoist/post/1'
}
extract('/user/:id', '/list/foo')
//=> null
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
path-extract © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).
egoistian.com · GitHub @egoist · Twitter @rem_rin_rin