Splice filename from URL
beyer-johannes opened this issue · comments
beyer-johannes commented
Describe the feature
It whould be a great help if parseURL also strip filenames like http://foo.com/foo/bar.png?test=123#token
into { protocol: 'http:', auth: '', host: 'foo.com', pathname: '/foo', search: '?test=123', hash: '#token', filename: 'bar.png' }
.
I think its a great feature because files are also a part of url.
Additional information
- Would you be willing to help implement this feature?
Pooya Parsa commented
We could expose a new util getFilename(url)
to do this 👍🏼
beyer-johannes commented
Should be great too