mirror of
https://github.com/gchq/CyberChef.git
synced 2025-07-03 03:12:24 -04:00
remove debug logging
This commit is contained in:
parent
c182f06e14
commit
6d51f53829
1 changed files with 0 additions and 4 deletions
|
@ -204,8 +204,6 @@ class GenerateSpectrogram extends Operation {
|
||||||
/* pad with zeros */
|
/* pad with zeros */
|
||||||
const pad = new Float64Array(frameSize - chunk.length).fill(0);
|
const pad = new Float64Array(frameSize - chunk.length).fill(0);
|
||||||
chunk = Float64Array.from([...chunk, ...pad]);
|
chunk = Float64Array.from([...chunk, ...pad]);
|
||||||
|
|
||||||
console.log(chunk);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* get frequency spectrum */
|
/* get frequency spectrum */
|
||||||
|
@ -282,8 +280,6 @@ class GenerateSpectrogram extends Operation {
|
||||||
* @returns {string} HTML
|
* @returns {string} HTML
|
||||||
*/
|
*/
|
||||||
async present(data, args) {
|
async present(data, args) {
|
||||||
console.log(args);
|
|
||||||
|
|
||||||
if (!data.length) return "";
|
if (!data.length) return "";
|
||||||
|
|
||||||
// check file type
|
// check file type
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue