Skip to content

Commit 946bf6f

Browse files
committed
Auto-generated commit
1 parent 4c674f2 commit 946bf6f

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 isCircularArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-circular-array@deno/mod.js';
46+
```
47+
The previous example will load the latest bundled code from the deno 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-circular-array/tags). For example,
48+
4449
```javascript
4550
import isCircularArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-circular-array@v0.2.0-deno/mod.js';
4651
```
@@ -75,7 +80,7 @@ bool = isCircularArray( arr );
7580
<!-- eslint no-undef: "error" -->
7681

7782
```javascript
78-
import isCircularArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-circular-array@v0.2.0-deno/mod.js';
83+
import isCircularArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-circular-array@deno/mod.js';
7984

8085
var arr = [ 1, 2, 3 ];
8186
arr.push( arr );

0 commit comments

Comments
 (0)