mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
more comments
This commit is contained in:
parent
208cb05c74
commit
e8bb9e264d
@ -139,7 +139,7 @@ class SetOps {
|
||||
* Get elements of each set that aren't in the other set.
|
||||
* @param {Object[]} a
|
||||
* @param {Object[]} b
|
||||
* @return {Object}
|
||||
* @return {Object[]}
|
||||
*/
|
||||
runSymmetricDifference(a, b) {
|
||||
return this.runSetDifference(a,b)
|
||||
@ -148,8 +148,9 @@ class SetOps {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {*} a
|
||||
* @param {*} b
|
||||
* @param {Object[]} a
|
||||
* @param {Object[]} b
|
||||
* @returns {String[]}
|
||||
*/
|
||||
runCartesianProduct(a, b) {
|
||||
return Array(Math.max(a.length, b.length))
|
||||
@ -159,7 +160,8 @@ class SetOps {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {*} a
|
||||
* @param {Object[]} a
|
||||
* @returns {Object[]}
|
||||
*/
|
||||
runPowerSet(delimiter) {
|
||||
return function(a) {
|
||||
|
Loading…
Reference in New Issue
Block a user