supprimer le hachage de l'URL JavaScript

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