UNPKG

webdaw-modules

Version:

a set of modules for building a web-based DAW

10 lines (8 loc) 214 B
import uniqid from "uniqid"; import { MIDIEvent } from "./MIDIEvent"; export const addIdToMIDIEvent = (events: MIDIEvent[]): MIDIEvent[] => { return events.map(e => { e.id = uniqid(); return e; }); };