Skip to content

Commit fd019d4

Browse files
committed
Update README.md for ESM bundle v0.2.0
1 parent 262e91b commit fd019d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ A **FancyArray** is an [`ndarray`][@stdlib/ndarray/ctor] which supports slicing
4545

4646
```javascript
4747
import ndarray2array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@esm/index.mjs';
48-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@esm/index.mjs';
48+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-esm/index.mjs';
4949

5050
var buffer = [ 1, 2, 3, 4, 5, 6 ];
5151
var x = new FancyArray( 'generic', buffer, [ 6 ], [ 1 ], 0, 'row-major' );
@@ -86,7 +86,7 @@ arr = ndarray2array( y );
8686
## Usage
8787

8888
```javascript
89-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@esm/index.mjs';
89+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-esm/index.mjs';
9090
```
9191

9292
<a name="main"></a>
@@ -711,7 +711,7 @@ The method does **not** serialize data outside of the buffer region defined by t
711711
import S from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-ctor@esm/index.mjs';
712712
import E from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-multi@esm/index.mjs';
713713
import toArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@esm/index.mjs';
714-
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@esm/index.mjs';
714+
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-esm/index.mjs';
715715
716716
var buffer = [
717717
1, 2,

0 commit comments

Comments
 (0)