Glen Whitney
77bd983cbc
I failed to find a satisfactory way to compile and import moo.js with fixed specifiers, so finally I just gave up and patched the distributed code to be an es6 module. A bit ugly but it works.
18 lines
446 B
HTML
18 lines
446 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>vrml1to97 test</title>
|
|
<script>
|
|
(async () => {
|
|
const vrml1to97 = await import('../dist/vrml1to97/index.js')
|
|
console.log(vrml1to97.convert('if (moo) cows // hurray'))
|
|
})()
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Nothing will show in this page, but the result of the conversion
|
|
should appear in the console.</p>
|
|
</body>
|
|
</html>
|