git ssb

3+

cel / ssb-npm-registry



Tree: 1f9a3fcaa6f6fa4a3ad0a219f6df1a476588f6d5

Files: 1f9a3fcaa6f6fa4a3ad0a219f6df1a476588f6d5 / node_modules / pull-file / examples / rate.js

503 bytesRaw
1var pull = require('pull-stream')
2var File = require('../')
3
4
5module.exports = function (file, cb) {
6 var start = Date.now(), total = 0
7 pull(
8 File(file),
9 pull.drain(function (b) {
10 total += b.length
11 }, function (err) {
12 cb(null, {time: Date.now() - start, total: total})
13 })
14 )
15}
16
17
18
19if(!module.parent)
20 module.exports (process.argv[2], function (err, stats) {
21 var seconds = stats.time/1000, mb = stats.total/(1024*1024)
22 console.log(seconds, mb, mb/seconds)
23 })
24
25
26
27

Built with git-ssb-web