-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstreams.js
59 lines (48 loc) · 1.25 KB
/
streams.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*!
* always-promise <https://github.com/hybridables/always-promise>
*
* Copyright (c) 2015 Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)
* Released under the MIT license.
*/
'use strict'
var fs = require('fs')
var path = require('path')
var promisify = require('../index')
var filepath = path.join(path.dirname(__dirname), 'package.json')
/**
* sync function that retun
* successful fs.createReadStream
* @todo in merz/always-done/always-callback to read the stream contents
*/
var readStream = promisify(function (fp) {
return fs.createReadStream(fp)
})
readStream(filepath)
.then(function (res) {
console.log(res) // => undefined
}, console.error)
/**
* directly passed stream to promisify function
* using the fs.createReadStream
*/
var stream = promisify(fs.createReadStream(filepath))
stream()
.then(function (res) {
console.log(res) // => undefined
}, console.error)
/**
* failing stream
* just giving `fs.createReadStream` function
* to promisify function
*/
promisify(fs.createReadStream)('foobar.json')
.catch(function (err) {
console.log(err.code) // => 'ENOENT'
})
/**
* promisify `fs.createReadStream` function
*/
promisify(fs.createReadStream)(filepath)
.then(function (res) {
console.log(res) // => undefined
})