mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
18 lines
336 B
HTML
18 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>
|