theatre/packages/benchmarks/src/index.html
Aria Minaei ae8be59366 Implement a basic benchmark test, and deprecate derivation.map()/flatMap()
This starts a new workspace at `packages/benchmarks` where future benchmarks
are going to sit. For now, it only contains a basic profile of a `sequence.play()`
setup.

It also removes all uses of `AbstractDerivation.map()/flatMap()` and uses prisms
instead.
2023-01-04 20:49:35 +01:00

21 lines
352 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Benchmarks Theatre.js</title>
<style>
body {
margin: 0;
padding: 0;
height: 100%;
background-color: #1a1a1a;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./index.js"></script>
</body>
</html>