Commit b695e918 authored by GoshaZotov's avatar GoshaZotov

add max value arguments for XOR function

parent 6d86a316
...@@ -390,6 +390,7 @@ ...@@ -390,6 +390,7 @@
cXOR.prototype = Object.create(cBaseFunction.prototype); cXOR.prototype = Object.create(cBaseFunction.prototype);
cXOR.prototype.constructor = cXOR; cXOR.prototype.constructor = cXOR;
cXOR.prototype.argumentsMin = 1; cXOR.prototype.argumentsMin = 1;
cXOR.prototype.argumentsMax = 254;
cXOR.prototype.isXLFN = true; cXOR.prototype.isXLFN = true;
cXOR.prototype.Calculate = function (arg) { cXOR.prototype.Calculate = function (arg) {
var argResult = null; var argResult = null;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment