Skip to content
Snippets Groups Projects
url.js 178 B
Newer Older
  • Learn to ignore specific revisions
  • function getApplicationPath() {
      return window.location.pathname.substr(
        0,
        window.location.pathname.lastIndexOf('/') + 1
      )
    }
    
    export default {
      getApplicationPath
    }