Hapus hash dari url javascript

function removeHash () { 
    history.pushState("", document.title, window.location.pathname
                                                       + window.location.search);
}
Homemadesteam58