mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 17:59:50 +02:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
import { BIN, VERSION } from "@yume-chan/fetch-scrcpy-server";
|
|
|
|
console.log(VERSION);
|
|
fetch(BIN)
|
|
.then((res) => res.arrayBuffer())
|
|
.then(console.log);
|