Skip to content

Commit 15b2b77

Browse files
committed
Auto-generated commit
1 parent a7dfc80 commit 15b2b77

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ limitations under the License.
4141

4242
## Usage
4343

44+
```javascript
45+
import isNodeReadableStreamLike from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-node-readable-stream-like@esm/index.mjs';
46+
```
47+
The previous example will load the latest bundled code from the esm branch. Alternatively, you may load a specific version by loading the file from one of the [tagged bundles](https://github.com/stdlib-js/assert-is-node-readable-stream-like/tags). For example,
48+
4449
```javascript
4550
import isNodeReadableStreamLike from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-node-readable-stream-like@v0.2.0-esm/index.mjs';
4651
```
@@ -80,7 +85,7 @@ var bool = isNodeReadableStreamLike( transformStream() );
8085
8186
var stream = require( 'stream' );
8287
import transformStream from 'https://cdn.jsdelivr.net/gh/stdlib-js/streams-node-transform@esm/index.mjs';
83-
import isNodeReadableStreamLike from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-node-readable-stream-like@v0.2.0-esm/index.mjs';
88+
import isNodeReadableStreamLike from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-node-readable-stream-like@esm/index.mjs';
8489
8590
var bool = isNodeReadableStreamLike( new stream.Readable() );
8691
// returns true

0 commit comments

Comments
 (0)