UNPKG
pelias-openstreetmap
Version:
latest (7.6.0)
7.6.0
7.5.0
7.4.0
7.3.0
7.2.0
7.1.0
7.0.0
6.0.0
5.20.0
5.19.0
5.18.0
5.17.0
5.16.0
5.15.0
5.14.0
5.13.1
5.13.0
5.12.0
5.11.2
5.11.1
5.11.0
5.10.2
5.10.1
5.10.0
5.9.0
5.8.0
5.7.1
5.7.0
5.6.0
5.5.0
5.4.1
5.4.0
5.3.0
5.2.1
5.2.0
5.1.0
5.0.2
5.0.1
5.0.0
4.30.0
4.29.0
4.28.1
4.28.0
4.27.0
4.26.0
4.25.0
4.24.0
4.23.2
4.23.1
4.23.0
4.22.0
4.21.1
4.21.0
4.20.1
4.20.0
4.19.1
4.19.0
4.18.1
4.18.0
4.17.14
4.17.13
4.17.12
4.17.11
4.17.10
4.17.9
4.17.8
4.17.7
4.17.6
4.17.5
4.17.4
4.17.3
4.17.2
4.17.1
4.17.0
4.16.8
4.16.7
4.16.6
4.16.5
4.16.4
4.16.3
4.16.2
4.16.1
4.16.0
4.15.0
4.14.12
4.14.11
4.14.10
4.14.9
4.14.8
4.14.7
4.14.6
4.14.5
4.14.4
4.14.3
4.14.2
4.14.1
4.14.0
4.13.16
4.13.15
4.13.14
4.13.13
4.13.12
4.13.11
4.13.10
4.13.9
4.13.8
4.13.7
4.13.6
4.13.5
4.13.4
4.13.3
4.13.2
4.13.1
4.13.0
4.12.0
4.11.4
4.11.3
4.11.2
4.11.1
4.11.0
4.10.5
4.10.4
4.10.3
4.10.2
4.10.1
4.10.0
4.9.0
4.8.0
4.7.0
4.6.0
4.5.0
4.4.0
4.3.0
4.2.0
4.1.1
4.1.0
4.0.0
3.1.1
3.1.0
3.0.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Pelias openstreetmap utilities
github.com/mapzen/pelias-openstreetmap
mapzen/pelias-openstreetmap
pelias-openstreetmap
/
util
/
sendPassthroughStream.js
9 lines
(7 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
through =
require
(
'through2'
);
function
sendPassthroughStream
(
) {
return
through.
obj
(
function
(
doc, enc, next
) {
next
(
null
, doc); }); }
module
.
exports
= sendPassthroughStream;