Function
reduceRight
(
fn: (
acc: unknown,
item: unknown,
index: number,
array: unknown[],
) => unknown,
...args: unknown[]
)
Source from the content-addressed store, hash-verified
| 177 | }, |
| 178 | |
| 179 | reduceRight( |
| 180 | fn: ( |
| 181 | acc: unknown, |
| 182 | item: unknown, |
| 183 | index: number, |
| 184 | array: unknown[], |
| 185 | ) => unknown, |
| 186 | ...args: unknown[] |
| 187 | ) { |
| 188 | return reduce(this, 'reduceRight', fn, args) |
| 189 | }, |
| 190 | |
| 191 | shift() { |
| 192 | return noTracking(this, 'shift') |
Callers
nothing calls this directly
Tested by
no test coverage detected