MCPcopy
hub / github.com/vuejs/core / reduceRight

Function reduceRight

packages/reactivity/src/arrayInstrumentations.ts:179–189  ·  view source on GitHub ↗
(
    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

Calls 1

reduceFunction · 0.85

Tested by

no test coverage detected