Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 781 Bytes

File metadata and controls

31 lines (18 loc) · 781 Bytes

distinctUntilChangedStrict module

Functions

Functions

distinctUntilChangedStrict

distinctUntilChangedStrictT›(iterable: Iterable‹T›): IterableIterator‹T›

Defined in index.ts:10

deprecated Use distinct() instead. Function to create new stream where items are distinct until changed uses strict comparison (===) to compare items

Type parameters:

T

Parameters:

Name Type Description
iterable Iterable‹T› input stream

Returns: IterableIterator‹T›

output stream