tinymusic
Version:
A simple, lightweight music sequencer in JavaScript using the Web Audio API.
10 lines (9 loc) • 315 B
JavaScript
(function ( root, factory ) {
if ( typeof define === 'function' && define.amd ) {
define( [ 'exports' ], factory );
} else if ( typeof exports === 'object' && typeof exports.nodeName !== 'string' ) {
factory( exports );
} else {
factory( root.TinyMusic = {} );
}
}( this, function ( exports ) {