mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 23:43:32 +00:00
19 lines
336 B
HTML
19 lines
336 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<script>
|
|
var worker = new Worker("code_worker-source-map.js");
|
|
|
|
function binary_search(items, value) {
|
|
worker.postMessage({
|
|
items: items,
|
|
value: value
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|