Hi, I'm trying to understand why, when I use:
const midiAccess = await navigator.requestMIDIAccess();
const inputs = Array.from(midiAccess.inputs.values());
My inputs is an empty array, even though I can see the elements when logging midiAccess.inputs.values().
Does that mean that Array.from is not working properly in this browser?
Hi, I'm trying to understand why, when I use:
My inputs is an empty array, even though I can see the elements when logging
midiAccess.inputs.values().Does that mean that
Array.fromis not working properly in this browser?