(reducer, initialReduction, context)
| 234 | }, |
| 235 | |
| 236 | reduce(reducer, initialReduction, context) { |
| 237 | return reduce( |
| 238 | this, |
| 239 | reducer, |
| 240 | initialReduction, |
| 241 | context, |
| 242 | arguments.length < 2, |
| 243 | false |
| 244 | ); |
| 245 | }, |
| 246 | |
| 247 | reduceRight(reducer, initialReduction, context) { |
| 248 | return reduce( |