mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Rename to runTar, runUntar, displayFilesAsHTML
This commit is contained in:
parent
e809deb914
commit
6f077a9c50
3 changed files with 6 additions and 7 deletions
|
@ -361,7 +361,7 @@ var Compress = {
|
|||
* @param {Object[]} args
|
||||
* @returns {byteArray}
|
||||
*/
|
||||
tar: function(input, args) {
|
||||
runTar: function(input, args) {
|
||||
// Not implemented yet
|
||||
return input;
|
||||
},
|
||||
|
@ -374,7 +374,7 @@ var Compress = {
|
|||
* @param {Object[]} args
|
||||
* @returns {html}
|
||||
*/
|
||||
untar: function(input, args) {
|
||||
runUntar: function(input, args) {
|
||||
var Stream = function(input) {
|
||||
this.bytes = input;
|
||||
this.position = 0;
|
||||
|
@ -451,7 +451,6 @@ var Compress = {
|
|||
}
|
||||
}
|
||||
|
||||
var output = Utils.HTMLFiles(files);
|
||||
return output;
|
||||
return Utils.displayFilesAsHTML(files);
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue