diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2017-07-11 21:04:59 -0400 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2017-07-12 21:00:21 -0400 |
commit | 3915ca0932333f3d0d01538df915ac38810949cc (patch) | |
tree | 830f2cd330d74e0be41338d1cf7914533d14cc88 /src | |
parent | f07c5096999bf1a65d3082f8de42d3499b43e532 (diff) |
Fix bug with compound dice
Diffstat (limited to 'src')
-rw-r--r-- | src/dice.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dice.js b/src/dice.js index ead3d16..c8a2572 100644 --- a/src/dice.js +++ b/src/dice.js @@ -1,11 +1,15 @@ const constant = n => () => [n] +const roll = (die) => { + return die().reduce((a, b) => (a + b)) +} + const d = (number, sides) => { return () => { let pool = [] - const currentNumber = number() - const currentSides = sides() + const currentNumber = roll(number) + const currentSides = roll(sides) for (let i = 0; i < currentNumber; i++) { pool.push(1 + Math.floor(Math.random() * currentSides)) @@ -33,10 +37,6 @@ const subtract = (die1, die2) => { } } -const roll = (die) => { - return die().reduce((a, b) => (a + b)) -} - exports.constant = constant exports.d = d exports.add = add |