MCPcopy
hub / github.com/Splidejs/splide / slice

Function slice

src/js/utils/arrayLike/slice/slice.ts:10–12  ·  view source on GitHub ↗
( arrayLike: ArrayLike<T>, start?: number, end?: number )

Source from the content-addressed store, hash-verified

8 * @return An array with sliced elements.
9 */
10export function slice<T>( arrayLike: ArrayLike<T>, start?: number, end?: number ): T[] {
11 return Array.prototype.slice.call( arrayLike, start, end );
12}

Callers 10

destroyFunction · 0.90
queryAllFunction · 0.90
childrenFunction · 0.90
applyFunction · 0.90
slice.test.tsFile · 0.90
findFunction · 0.90
mergeFunction · 0.90
assignFunction · 0.90
emitFunction · 0.90
emitMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…