Project

General

Profile

Download (329 Bytes) Statistics
| Branch: | Tag: | Revision:

haketilo / common / url_item.js @ 261548ff

1
/**
2
 * Myext stripping url from query and target
3
 *
4
 * Copyright (C) 2021 Wojtek Kosior
5
 * Redistribution terms are gathered in the `copyright' file.
6
 */
7

    
8
function url_item(url)
9
{
10
    let url_re = /^([^?#]*).*$/;
11
    let match = url_re.exec(url);
12
    return match[1];
13
}
14

    
15
/*
16
 * EXPORTS_START
17
 * EXPORT url_item
18
 * EXPORTS_END
19
 */
(9-9/9)