Skip to content

Instantly share code, notes, and snippets.

View titoBouzout's full-sized avatar

Tito titoBouzout

  • Montevideo, Uruguay
View GitHub Profile
import { createSignal } from "solid-js";
const signal = (buffer: Int32Array, index: number) => {
const s = createSignal(undefined, { equals: false });
const read = (debug?: string) => {
s[0]();
return buffer[index];
};
const write = (value: any) => {