include the soundfont-generator for creating HTML5 compatible soundfonts from SF2 files.

This commit is contained in:
Michael Deal 2012-02-15 21:02:45 -08:00
parent d338706cec
commit bdfeb91a40
10 changed files with 812 additions and 0 deletions

9
soundfont-generator/node_modules/btoa/index.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
(function () {
"use strict";
function atob(str) {
return new Buffer(str, 'utf8').toString('base64');
}
module.exports = atob;
}());