Skip to content

Commit 0a3afe5

Browse files
committedApr 12, 2016
minor tweaks
1 parent 892107f commit 0a3afe5

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed
 

‎.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ insert_final_newline = true
1010
[{package.json,*.yml}]
1111
indent_style = space
1212
indent_size = 2
13-
14-
[*.md]
15-
trim_trailing_whitespace = false

‎.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 'iojs'
4+
- '5'
5+
- '4'
56
- '0.12'
67
- '0.10'

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@
2020
],
2121
"keywords": [
2222
"stream",
23+
"type",
2324
"streams",
2425
"writable",
2526
"readable",
2627
"duplex",
28+
"transform",
2729
"check",
2830
"detect",
29-
"is",
30-
"type"
31+
"is"
3132
],
3233
"devDependencies": {
3334
"ava": "*",

‎readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# is-stream [![Build Status](https://travis-ci.org/sindresorhus/is-stream.svg?branch=master)](https://travis-ci.org/sindresorhus/is-stream)
22

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)
44
55

66
## Install
@@ -13,8 +13,8 @@ $ npm install --save is-stream
1313
## Usage
1414

1515
```js
16-
var fs = require('fs');
17-
var isStream = require('is-stream');
16+
const fs = require('fs');
17+
const isStream = require('is-stream');
1818

1919
isStream(fs.createReadStream('unicorn.png'));
2020
//=> true
@@ -39,4 +39,4 @@ isStream({});
3939

4040
## License
4141

42-
MIT © [Sindre Sorhus](http://sindresorhus.com)
42+
MIT © [Sindre Sorhus](https://sindresorhus.com)

0 commit comments

Comments
 (0)
Please sign in to comment.