File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ A **prime number** is defined as an integer value greater than `1` which is only
52
52
To use in Observable,
53
53
54
54
``` javascript
55
- isPrime = require ( ' https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@umd/browser.js' )
55
+ isPrime = require ( ' https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@v0.2.0- umd/browser.js' )
56
56
```
57
57
58
58
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
@@ -64,7 +64,7 @@ var isPrime = require( 'path/to/vendor/umd/assert-is-prime/index.js' )
64
64
To include the bundle in a webpage,
65
65
66
66
``` html
67
- <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@umd/browser.js" ></script >
67
+ <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@v0.2.0- umd/browser.js" ></script >
68
68
```
69
69
70
70
If no recognized module system is present, access bundle contents via the global scope:
@@ -154,7 +154,7 @@ bool = isPrime.isObject( new Number( 5.0 ) );
154
154
<html lang =" en" >
155
155
<body >
156
156
<script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@umd/browser.js" ></script >
157
- <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@umd/browser.js" ></script >
157
+ <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-prime@v0.2.0- umd/browser.js" ></script >
158
158
<script type =" text/javascript" >
159
159
(function () {
160
160
You can’t perform that action at this time.
0 commit comments