Impor variabel dari modul di javascript

<script type="module">
  
    import Mustache from "https://cdnjs.cloudflare.com/ajax/libs/mustache.js/4.2.0/mustache.min.js";


</script>
/*now you can use the export default mustache variable from Mustache.js*/
/*what you name (the Mustache part) it doesn't really matter, it does not have to match the value of export default mustache, for example, you could have named it Boo*/
Javasper