File tree 4 files changed +9
-10
lines changed
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,3 @@ insert_final_newline = true
10
10
[{package.json,* .yml} ]
11
11
indent_style = space
12
12
indent_size = 2
13
-
14
- [* .md ]
15
- trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
3
node_js :
4
- - ' iojs'
4
+ - ' 5'
5
+ - ' 4'
5
6
- ' 0.12'
6
7
- ' 0.10'
Original file line number Diff line number Diff line change 20
20
],
21
21
"keywords" : [
22
22
" stream" ,
23
+ " type" ,
23
24
" streams" ,
24
25
" writable" ,
25
26
" readable" ,
26
27
" duplex" ,
28
+ " transform" ,
27
29
" check" ,
28
30
" detect" ,
29
- " is" ,
30
- " type"
31
+ " is"
31
32
],
32
33
"devDependencies" : {
33
34
"ava" : " *" ,
Original file line number Diff line number Diff line change 1
1
# is-stream [ ![ Build Status] ( https://travis-ci.org/sindresorhus/is-stream.svg?branch=master )] ( https://travis-ci.org/sindresorhus/is-stream )
2
2
3
- > Check if something is a [ Node.js stream] ( http ://nodejs.org/api/stream.html)
3
+ > Check if something is a [ Node.js stream] ( https ://nodejs.org/api/stream.html)
4
4
5
5
6
6
## Install
@@ -13,8 +13,8 @@ $ npm install --save is-stream
13
13
## Usage
14
14
15
15
``` js
16
- var fs = require (' fs' );
17
- var isStream = require (' is-stream' );
16
+ const fs = require (' fs' );
17
+ const isStream = require (' is-stream' );
18
18
19
19
isStream (fs .createReadStream (' unicorn.png' ));
20
20
// => true
@@ -39,4 +39,4 @@ isStream({});
39
39
40
40
## License
41
41
42
- MIT © [ Sindre Sorhus] ( http ://sindresorhus.com)
42
+ MIT © [ Sindre Sorhus] ( https ://sindresorhus.com)
You can’t perform that action at this time.
0 commit comments