4144e9ffd0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
export function buildObjectCollection<T, U>(collection: T[] | undefined, builder: new (p: T) => U) {
|
|
if (!collection || Array.isArray(collection) === false) return [];
|
|
|
|
return collection.map((v) => new builder(v));
|
|
}
|