Skip to content

Commit bd108f7

Browse files
committed
Update README.md for UMD bundle v0.1.0
1 parent 62cf594 commit bd108f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ limitations under the License.
4444
To use in Observable,
4545

4646
```javascript
47-
isArray = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js' )
47+
isArray = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@v0.1.0-umd/browser.js' )
4848
```
4949

5050
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
@@ -56,7 +56,7 @@ var isArray = require( 'path/to/vendor/umd/assert-is-array/index.js' )
5656
To include the bundle in a webpage,
5757

5858
```html
59-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js"></script>
59+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@v0.1.0-umd/browser.js"></script>
6060
```
6161

6262
If no recognized module system is present, access bundle contents via the global scope:
@@ -92,7 +92,7 @@ var bool = isArray( [] );
9292
<!DOCTYPE html>
9393
<html lang="en">
9494
<body>
95-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js"></script>
95+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@v0.1.0-umd/browser.js"></script>
9696
<script type="text/javascript">
9797
(function () {
9898

0 commit comments

Comments
 (0)