diff --git a/src/utils/miscUtil.ts b/src/utils/miscUtil.ts index 463ccc0a5..e2d5efef9 100644 --- a/src/utils/miscUtil.ts +++ b/src/utils/miscUtil.ts @@ -26,12 +26,6 @@ export function fillIndex(ori: T, index: number, value: T[numbe return clone; } -export function fillRangeValues(ori: T, start: T[number], end: T[number]): T { - const clone = [...ori] as T; - [clone[0], clone[1]] = [start, end]; - - return clone; -} /** Pick props from the key list. Will filter empty value */ export function pickProps(props: T, keys?: (keyof T)[] | readonly (keyof T)[]) { const clone = {} as T;