convert file to state wip finish file to state conversion load in file to state (needs to be fixed in order to properly load some things in) formatting Add microkorg sysex decoding Correctly parse bit array sections Add sysex encoding and header creation remove log Finish format file v1 Fix a definitions Move stuff around add file to store functions Finish prepare_timbre begin to Setup menu Gut a lot of stuff, and implement the menu Begin overhaul of fileupload process Finish hooking up the menu clean up start saving functions add unused state, mostly finish saveStore add self reminder complete store saving process 1 store to simplified store is complete
14 lines
914 B
Diff
14 lines
914 B
Diff
diff --git a/node_modules/binary-parser-encoder/dist/binary_parser.js b/node_modules/binary-parser-encoder/dist/binary_parser.js
|
|
index ee49a70..ef0ac58 100644
|
|
--- a/node_modules/binary-parser-encoder/dist/binary_parser.js
|
|
+++ b/node_modules/binary-parser-encoder/dist/binary_parser.js
|
|
@@ -551,7 +551,7 @@ var Parser = /** @class */ (function () {
|
|
Parser.prototype.compile = function () {
|
|
var importPath = 'imports';
|
|
var ctx = this.getContext(importPath);
|
|
- this.compiled = new Function(importPath, 'TextDecoder', "return function (buffer, constructorFn) { " + ctx.code + " };")(ctx.imports, typeof TextDecoder === 'undefined'
|
|
+ this.compiled = new Function(importPath, 'TextDecoder', "return function (buffer, constructorFn) { ' + ctx.code + ' };")(ctx.imports, typeof TextDecoder === 'undefined'
|
|
? require('util').TextDecoder
|
|
: TextDecoder);
|
|
};
|