Commit 5804f3fe authored by Bryce Johnson's avatar Bryce Johnson

Remove unused object key param.

parent dbae156f
...@@ -141,7 +141,7 @@ function getRandomInt(min, max) { ...@@ -141,7 +141,7 @@ function getRandomInt(min, max) {
let unorderedMinutes = this.secondsToMinutes(seconds); let unorderedMinutes = this.secondsToMinutes(seconds);
return _.mapObject(timePeriodConstraints, (minutesPerPeriod, periodName ) => { return _.mapObject(timePeriodConstraints, (minutesPerPeriod) => {
const periodCount = Math.floor(unorderedMinutes / minutesPerPeriod); const periodCount = Math.floor(unorderedMinutes / minutesPerPeriod);
unorderedMinutes -= (periodCount * minutesPerPeriod); unorderedMinutes -= (periodCount * minutesPerPeriod);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment