Skip to content

Commit 9ff0bb4

Browse files
committed
Remove unused util function
1 parent 11b61a7 commit 9ff0bb4

File tree

1 file changed

+0
-9
lines changed
  • src/vs/workbench/services/positronDataExplorer/common

1 file changed

+0
-9
lines changed

src/vs/workbench/services/positronDataExplorer/common/utils.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,6 @@ export interface Range {
1111
readonly max: number;
1212
}
1313

14-
/**
15-
* Creates an array from an index range.
16-
* @param startIndex The start index.
17-
* @param endIndex The end index.
18-
* @returns An array with the specified index range.
19-
*/
20-
export const arrayFromIndexRange = (startIndex: number, endIndex: number) =>
21-
Array.from({ length: endIndex - startIndex + 1 }, (_, i) => startIndex + i);
22-
2314
/**
2415
* Determines whether an array of numbers is contiguous.
2516
* @param array The array of numbers.

0 commit comments

Comments
 (0)