/** * @author bwhitn [brian.m.whitney@outlook.com] * @author d98762625 [d98762625@gmail.com] * @copyright Crown Copyright 2018 * @license Apache-2.0 */ import BigNumber from "bignumber.js"; import Operation from "../Operation"; import { multi, createNumArray } from "../lib/Arithmetic"; import { ARITHMETIC_DELIM_OPTIONS } from "../lib/Delim"; /** * Multiply operation */ class Multiply extends Operation { /** * Multiply constructor */ constructor() { super(); this.name = "Multiply"; this.module = "Default"; this.description = "Multiplies a list of numbers. If an item in the string is not a number it is excluded from the list.

e.g. 0x0a 8 .5 becomes 40"; this.infoURL = "https://wikipedia.org/wiki/Multiplication"; 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 = multi(createNumArray(input, args[0])); return BigNumber.isBigNumber(val) ? val : new BigNumber(NaN); } } export default Multiply;