MCPcopy Index your code
hub / github.com/nodejs/node / concatenate

Function concatenate

test/fixtures/snapshot/typescript.js:966–972  ·  view source on GitHub ↗
(array1, array2)

Source from the content-addressed store, hash-verified

964 }
965 ts.getRangesWhere = getRangesWhere;
966 function concatenate(array1, array2) {
967 if (!some(array2))
968 return array1;
969 if (!some(array1))
970 return array2;
971 return __spreadArray(__spreadArray([], array1, true), array2, true);
972 }
973 ts.concatenate = concatenate;
974 function selectIndex(_, i) {
975 return i;

Callers 1

combineFunction · 0.85

Calls 1

someFunction · 0.70

Tested by

no test coverage detected