mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
port Sum operation
This commit is contained in:
parent
a7d763287e
commit
4fe34a4839
4 changed files with 2217 additions and 2007 deletions
48
src/core/operations/Sum.mjs
Normal file
48
src/core/operations/Sum.mjs
Normal file
|
@ -0,0 +1,48 @@
|
|||
/**
|
||||
* @author bwhitn [brian.m.whitney@outlook.com]
|
||||
* @copyright Crown Copyright 2016
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import Operation from "../Operation";
|
||||
import Arithmetic from "./baseClasses/Arithmetic";
|
||||
import BigNumber from "bignumber.js";
|
||||
|
||||
/**
|
||||
* Sum operation
|
||||
*/
|
||||
class Sum extends Operation {
|
||||
|
||||
/**
|
||||
* Sum constructor
|
||||
*/
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.name = "Sum";
|
||||
this.module = "Default";
|
||||
this.description = "Adds together a list of numbers. If an item in the string is not a number it is excluded from the list.<br><br>e.g. <code>0x0a 8 .5</code> becomes <code>18.5</code>";
|
||||
this.inputType = "string";
|
||||
this.outputType = "BigNumber";
|
||||
this.args = [
|
||||
{
|
||||
"name": "Delimiter",
|
||||
"type": "option",
|
||||
"value": Arithmetic.DELIM_OPTIONS,
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} input
|
||||
* @param {Object[]} args
|
||||
* @returns {BigNumber}
|
||||
*/
|
||||
run(input, args) {
|
||||
const val = Arithmetic._sum(Arithmetic._createNumArray(input, args[0]));
|
||||
return val instanceof BigNumber ? val : new BigNumber(NaN);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default Sum;
|
Loading…
Add table
Add a link
Reference in a new issue