chore(format): format a TS file

This commit is contained in:
Yegor Jbanov 2015-04-17 13:56:13 -07:00
parent 526c51d1a6
commit 01869f9fa8
1 changed files with 1 additions and 3 deletions

View File

@ -168,9 +168,7 @@ export class ListWrapper {
return true;
}
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> {
return l.splice(from, length);
}
static splice<T>(l: List<T>, from: int, length: int): List<T> { return l.splice(from, length); }
static sort<T>(l: List<T>, compareFn: (a: T, b: T) => number) { l.sort(compareFn); }
}