6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
![]() |
/**
|
||
|
* Removes all `undefined` values within an array without creating additional
|
||
|
* arrays
|
||
|
*/
|
||
|
export declare function removeUndefinedItems<T = any>(array: Array<T>): Array<T>;
|