Skip to content

Commit 26fda1b

Browse files
committed
Auto-generated commit
1 parent fda488c commit 26fda1b

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 array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-array@esm/index.mjs';
56+
```
57+
The previous example will load the latest bundled code from the esm branch. Alternatively, you may load a specific version by loading the file from one of the [tagged bundles](https://github.com/stdlib-js/ndarray-array/tags). For example,
58+
5459
```javascript
5560
import array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-array@v0.2.0-esm/index.mjs';
5661
```
@@ -227,7 +232,7 @@ var bool = ( v === buf[ 0 ] );
227232
<body>
228233
<script type="module">
229234
230-
import array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-array@v0.2.0-esm/index.mjs';
235+
import array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-array@esm/index.mjs';
231236
232237
// Create a 4-dimensional array containing single-precision floating-point numbers:
233238
var arr = array({

0 commit comments

Comments
 (0)