2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-13 06:43:26 +00:00

fix lint errors

This commit is contained in:
d98762625
2018-03-25 17:44:10 +01:00
parent 951568ce22
commit f3610e7c95

View File

@@ -145,7 +145,7 @@ class SetOps {
* @return {Object[]} * @return {Object[]}
*/ */
runSymmetricDifference(a, b) { runSymmetricDifference(a, b) {
return this.runSetDifference(a,b) return this.runSetDifference(a, b)
.concat(this.runSetDifference(b, a)); .concat(this.runSetDifference(b, a));
} }