mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
5 lines
173 B
JavaScript
5 lines
173 B
JavaScript
export default function linkURL(url) {
|
|
let newURL = (url && decodeURIComponent(url)) || "";
|
|
return newURL.substring(newURL.indexOf(".com/") + 5, newURL.indexOf("_"));
|
|
}
|