From 1198094d3bff2dcd3083e09774ea6fa5ffef769d Mon Sep 17 00:00:00 2001 From: d98762625 Date: Tue, 15 May 2018 10:42:51 +0100 Subject: [PATCH] port median operation --- src/core/operations/Median.mjs | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/core/operations/Median.mjs diff --git a/src/core/operations/Median.mjs b/src/core/operations/Median.mjs new file mode 100644 index 00000000..5fdecc8a --- /dev/null +++ b/src/core/operations/Median.mjs @@ -0,0 +1,48 @@ +/** + * @author d98762625 [d98762625@gmail.com] + * @copyright Crown Copyright 2018 + * @license Apache-2.0 + */ + +import Operation from "../Operation"; +import Arithmetic from "../lib/Arithmetic"; +import BigNumber from "bignumber.js"; + +/** + * Median operation + */ +class Median extends Operation { + + /** + * Median constructor + */ + constructor() { + super(); + + this.name = "Median"; + this.module = "Default"; + this.description = "Computes the median of a number list. If an item in the string is not a number it is excluded from the list.

e.g. 0x0a 8 1 .5 becomes 4.5"; + 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._median(Arithmetic._createNumArray(input, args[0])); + return val instanceof BigNumber ? val : new BigNumber(NaN); + } + +} + +export default Median;