Improve arraySeed utility
This is a tiny microimprovement, but worthwhile the more we use it.pull/21833/head
parent
1b39dbdb53
commit
4910737064
|
@ -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…
Reference in New Issue