chore(format): format a TS file
This commit is contained in:
parent
526c51d1a6
commit
01869f9fa8
|
@ -168,9 +168,7 @@ export class ListWrapper {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
static slice<T>(l: List<T>, from: int, to: int): List<T> { return l.slice(from, to); }
|
static slice<T>(l: List<T>, from: int, to: int): List<T> { return l.slice(from, to); }
|
||||||
static splice<T>(l:List<T>, from:int, length:int):List<T> {
|
static splice<T>(l: List<T>, from: int, length: int): List<T> { return l.splice(from, length); }
|
||||||
return l.splice(from, length);
|
|
||||||
}
|
|
||||||
static sort<T>(l: List<T>, compareFn: (a: T, b: T) => number) { l.sort(compareFn); }
|
static sort<T>(l: List<T>, compareFn: (a: T, b: T) => number) { l.sort(compareFn); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue