Skip to content

Commit e36f204

Browse files
committed
Auto-generated commit
1 parent 1961b3f commit e36f204

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
@@ -51,6 +51,11 @@ limitations under the License.
5151

5252
## Usage
5353

54+
```javascript
55+
import iterator2arrayview from 'https://cdn.jsdelivr.net/gh/stdlib-js/iter-to-array-view@deno/mod.js';
56+
```
57+
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/iter-to-array-view/tags). For example,
58+
5459
```javascript
5560
import iterator2arrayview from 'https://cdn.jsdelivr.net/gh/stdlib-js/iter-to-array-view@v0.2.2-deno/mod.js';
5661
```
@@ -203,7 +208,7 @@ var count = ctx.count;
203208
```javascript
204209
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@deno/mod.js';
205210
import randu from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-iter-randu@deno/mod.js';
206-
import iterator2arrayview from 'https://cdn.jsdelivr.net/gh/stdlib-js/iter-to-array-view@v0.2.2-deno/mod.js';
211+
import iterator2arrayview from 'https://cdn.jsdelivr.net/gh/stdlib-js/iter-to-array-view@deno/mod.js';
207212

208213
function scale( v, i ) {
209214
return v * (i+1);

0 commit comments

Comments
 (0)