multiplication: {
    name: 'multiplication',
    sign: 'x',
    apply(inputs) {
      var product = _.reduce(inputs, (p, n) => p * n);