Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Latest commit

 

History

History
27 lines (17 loc) · 397 Bytes

File metadata and controls

27 lines (17 loc) · 397 Bytes

SegmentStream Utils

Installation

Using npm

npm i --save @segmentstream/utils

or using yarn

yarn add @segmentstream/utils

Adding to you project

import cleanObject from '@segmentstream/utils/cleanObject'

const cleanedObject = cleanObject({ a: undefined, b: null, c: 'value' }) // { c: 'value'}

Development

Execute npm test for run unit test!