UNPKG

307 BMarkdownView Raw
1# pull-stream/throughs/unique
2
3## usage
4
5### `unique = require('pull-stream/throughs/unique')`
6
7### `unique(prop)`
8
9Filter items that have a repeated value for `prop()`,
10by default, `prop = function (it) {return it }`, if prop is a string,
11it will filter nodes which have repeated values for that property.