Files: 89810d797532892ef70d5ee23f3b82c5466e7858 / test / git-remote-test.js
338 bytesRaw
1 | |
2 | |
3 | var toPull = require('stream-to-pull-stream') |
4 | var pull = require('pull-stream') |
5 | |
6 | pull( |
7 | toPull(process.stdin), |
8 | require('../')({ |
9 | prefix: 'foo', |
10 | objectSink: pull.drain(function (obj) { |
11 | console.error('obj', obj) |
12 | }) |
13 | }), |
14 | toPull(process.stdout, function (err) { |
15 | if (err) |
16 | throw err |
17 | }) |
18 | ) |
19 |
Built with git-ssb-web