Creates an object composed of the own and inherited enumerable string keyed properties of object that doesn't undefined.
npm install omit-undefinedomitUndefined(object: T): T
typescript
import { omitUndefined } from 'omit-undefined'
omitUndefined({
a: null,
b: Some value,
c: undefined,
d: false
})
// Output: { a: null, b: Some value, d: false }
``
This module exported from utilizes project.