forked from potsda.mn/mobilizon
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));
|
|
}
|