Skip to content

Commit

Permalink
Update README.md for Deno bundle v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 15, 2024
1 parent 484fd28 commit 284f7a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ A **FancyArray** is an [`ndarray`][@stdlib/ndarray/ctor] which supports slicing

```javascript
import ndarray2array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@deno/mod.js';
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-deno/mod.js';

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

```javascript
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-deno/mod.js';
```

<a name="main"></a>
Expand Down Expand Up @@ -706,7 +706,7 @@ The method does **not** serialize data outside of the buffer region defined by t
import S from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-ctor@deno/mod.js';
import E from 'https://cdn.jsdelivr.net/gh/stdlib-js/slice-multi@deno/mod.js';
import toArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@deno/mod.js';
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@deno/mod.js';
import FancyArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-fancy@v0.2.0-deno/mod.js';

var buffer = [
1, 2,
Expand Down

0 comments on commit 284f7a0

Please sign in to comment.