mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-24 09:48:37 +08:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
/* Extract file name from url.
|
|
*/
|
|
|
|
_('last trim')
|
|
|
|
function exports(url) {
|
|
let ret = last(url.split('/'))
|
|
|
|
if (ret.indexOf('?') > -1) ret = trim(ret.split('?')[0])
|
|
|
|
return ret === '' ? 'unknown' : ret
|
|
}
|