UNPKG

observ-midi

Version:

Observe and write to midi stream as a single value, struct, array or grid.

7 lines (6 loc) 156 B
module.exports = function write (port, message) { var stream = typeof port === 'function' ? port() : port if (stream) { stream.write(message) } }