/log/

link rel='shortcut icon' href='/static/favicon.png'/>
about summary refs log tree commit diff
path: root/assets/src/utils/getShareToken.ts
blob: bfe6f58408466fbb319d29a57c95ff9bd660b96e (plain)
1
2
3
4
export default (): string => {
    const splitPath = window.location.pathname.split("/");
    return splitPath[splitPath.length - 1];
};