2
0
Fork 0
mirror of https://github.com/gchq/CyberChef synced 2025-03-14 05:46:56 +00:00

Move back let number; to satisfy linter requirements

This commit is contained in:
Dex 2023-03-27 19:24:28 -04:00
parent 9606da7648
commit 028a6c737c

View file

@ -99,6 +99,8 @@ class Ingredient {
* @param {string} type - The name of the data type.
*/
static prepare(data, type) {
let number;
switch (type) {
case "binaryString":
case "binaryShortString":
@ -116,7 +118,7 @@ class Ingredient {
if (data === null) return data;
if (isNaN(data)) throw "Ingredient can not be empty.";
let number = parseFloat(data);
number = parseFloat(data);
if (isNaN(number)) {
const sample = Utils.truncate(data.toString(), 10);
throw "Invalid ingredient value. Not a number: " + sample;