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

14
soundfont-generator/node_modules/btoa/test.js generated vendored Normal file
View file

@ -0,0 +1,14 @@
(function () {
"use strict";
var atob = require('./index')
, expected = "SGVsbG8gV29ybGQ="
, result
;
if (expected !== atob("Hello World")) {
return;
}
console.log('[PASS] all tests pass');
}());