mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 15:56:16 -04:00
Modified bzip2 library export to use ES6 syntax. Fixes #382.
This commit is contained in:
parent
d6c6981bc0
commit
0c6efd95fa
2 changed files with 2 additions and 1 deletions
2
src/core/vendor/bzip2.js
vendored
2
src/core/vendor/bzip2.js
vendored
|
@ -262,4 +262,4 @@ bzip2.decompress = function(bits, size, len){
|
|||
return output;
|
||||
}
|
||||
|
||||
module.exports = bzip2;
|
||||
export default bzip2;
|
||||
|
|
|
@ -67,6 +67,7 @@ class BackgroundWorkerWaiter {
|
|||
log.debug("Background ChefWorker loaded");
|
||||
break;
|
||||
case "optionUpdate":
|
||||
case "statusMessage":
|
||||
// Ignore these messages
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue