botbook/node_modules/@sagold/json-pointer/dist/lib/removeUndefinedItems.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

5 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>;