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

Function findLast

packages/reactivity/src/arrayInstrumentations.ts:104–116  ·  view source on GitHub ↗
(
    fn: (item: unknown, index: number, array: unknown[]) => boolean,
    thisArg?: unknown,
  )

Source from the content-addressed store, hash-verified

102 },
103
104 findLast(
105 fn: (item: unknown, index: number, array: unknown[]) => boolean,
106 thisArg?: unknown,
107 ) {
108 return apply(
109 this,
110 'findLast',
111 fn,
112 thisArg,
113 item => toWrapped(this, item),
114 arguments,
115 )
116 },
117
118 findLastIndex(
119 fn: (item: unknown, index: number, array: unknown[]) => boolean,

Callers

nothing calls this directly

Calls 2

applyFunction · 0.85
toWrappedFunction · 0.85

Tested by

no test coverage detected