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

Function concat

packages/reactivity/src/arrayInstrumentations.ts:49–53  ·  view source on GitHub ↗
(...args: unknown[])

Source from the content-addressed store, hash-verified

47 },
48
49 concat(...args: unknown[]) {
50 return reactiveReadArray(this).concat(
51 ...args.map(x => (isArray(x) ? reactiveReadArray(x) : x)),
52 )
53 },
54
55 entries() {
56 return iterator(this, 'entries', (value: [number, unknown]) => {

Callers

nothing calls this directly

Calls 2

reactiveReadArrayFunction · 0.85
mapMethod · 0.80

Tested by

no test coverage detected