I want to make a js library, and I have all the code. Libraries like Jquery can let you do like
<script src = "..."></script>
<script>
//uses the library
</script>
without the import * from JQuery
.
How can I do this without declaring the library a modular or importing?