vrml1to97/etc/testscript.html
Glen Whitney 67a07e2000 chore: Set up development environment
Add the civet and typescript compilers, implement a build step,
  provide examples of using from es6, script, and command line.
  Of course, there is no actual behavior produced; convert always produces
  'foo' at the moment.
2023-09-01 08:20:34 -07:00

18 lines
417 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vrml1to97 test</title>
<script>
(async () => {
const vrml1to97 = await import('../dist/index.js')
console.log(vrml1to97.convert('test'))
})()
</script>
</head>
<body>
<p>Nothing will show in this page, but the result of the conversion
should appear in the console.</p>
</body>
</html>