Merge pull request #6360 from matrix-org/travis/seed-faster
Improve arraySeed utility
This commit is contained in:
commit
cbce71fd8e
1 changed files with 3 additions and 5 deletions
|
@ -112,11 +112,9 @@ export function arrayRescale(input: number[], newMin: number, newMax: number): n
|
||||||
* @returns {T[]} The array.
|
* @returns {T[]} The array.
|
||||||
*/
|
*/
|
||||||
export function arraySeed<T>(val: T, length: number): T[] {
|
export function arraySeed<T>(val: T, length: number): T[] {
|
||||||
const a: T[] = [];
|
// Size the array up front for performance, and use `fill` to let the browser
|
||||||
for (let i = 0; i < length; i++) {
|
// optimize the operation better than we can with a `for` loop, if it wants.
|
||||||
a.push(val);
|
return new Array<T>(length).fill(val);
|
||||||
}
|
|
||||||
return a;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue