Skip to content

Commit 3b71684

Browse files
committed
Auto-generated commit
1 parent 6089dae commit 3b71684

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 zeros from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-zeros@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/array-zeros/tags). For example,
58+
5459
```javascript
5560
import zeros from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-zeros@v0.2.0-deno/mod.js';
5661
```
@@ -108,7 +113,7 @@ var arr = zeros( 2, 'int32' );
108113

109114
```javascript
110115
import dtypes from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-dtypes@deno/mod.js';
111-
import zeros from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-zeros@v0.2.0-deno/mod.js';
116+
import zeros from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-zeros@deno/mod.js';
112117

113118
// Get a list of array data types:
114119
var dt = dtypes();

0 commit comments

Comments
 (0)