File tree 4 files changed +6
-18
lines changed
4 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ charset = utf-8
7
7
trim_trailing_whitespace = true
8
8
insert_final_newline = true
9
9
10
- [package.json ]
10
+ [{ package.json, * .yml} ]
11
11
indent_style = space
12
12
indent_size = 2
13
13
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ var isStream = module.exports = function (stream) {
5
5
} ;
6
6
7
7
isStream . writable = function ( stream ) {
8
- return isStream ( stream ) && stream . writable !== false && typeof stream . _write == 'function' && typeof stream . _writableState == 'object' ;
8
+ return isStream ( stream ) && stream . writable !== false && typeof stream . _write === 'function' && typeof stream . _writableState = == 'object' ;
9
9
} ;
10
10
11
11
isStream . readable = function ( stream ) {
12
- return isStream ( stream ) && stream . readable !== false && typeof stream . _read == 'function' && typeof stream . _readableState == 'object' ;
12
+ return isStream ( stream ) && stream . readable !== false && typeof stream . _read === 'function' && typeof stream . _readableState = == 'object' ;
13
13
} ;
14
14
15
15
isStream . duplex = function ( stream ) {
Original file line number Diff line number Diff line change 13
13
"node" : " >=0.10.0"
14
14
},
15
15
"scripts" : {
16
- "test" : " node test.js"
16
+ "test" : " xo && node test.js"
17
17
},
18
18
"files" : [
19
19
" index.js"
31
31
],
32
32
"devDependencies" : {
33
33
"ava" : " 0.0.4" ,
34
- "tempfile" : " ^1.1.0"
34
+ "tempfile" : " ^1.1.0" ,
35
+ "xo" : " *"
35
36
}
36
37
}
You can’t perform that action at this time.
0 commit comments