2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-22 19:23:40 +00:00

Small stuff to make eslint happy

This commit is contained in:
Mike Schwörer
2016-12-16 22:32:19 +01:00
parent 4c36123fd7
commit dea16f63f5
2 changed files with 2 additions and 2 deletions

View File

@@ -396,7 +396,7 @@ var Extract = {
};
return Array.apply(null, Array(result.length))
.map(function (_, i) {return result[i];})
.map((_, i) => result[i])
.map(nodeToString)
.join(delimiter);
},