2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Merge branch 'prefer-const' of https://github.com/graingert/CyberChef into graingert-prefer-const

This commit is contained in:
n1474335
2017-05-06 14:11:38 +01:00
15 changed files with 165 additions and 163 deletions

View File

@@ -38,7 +38,7 @@ import Chef from "../src/core/Chef.js";
TestRegister.prototype.runTests = function() {
return Promise.all(
this.tests.map(function(test, i) {
let chef = new Chef();
const chef = new Chef();
return chef.bake(
test.input,
@@ -48,7 +48,7 @@ import Chef from "../src/core/Chef.js";
false
)
.then(function(result) {
let ret = {
const ret = {
test: test,
status: null,
output: null,