Skip to content

Commit b59dc5e

Browse files
committed
Auto-generated commit
1 parent 05a46fc commit b59dc5e

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 reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-base-reverse@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/ndarray-base-reverse/tags). For example,
58+
5459
```javascript
5560
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-base-reverse@v0.2.2-deno/mod.js';
5661
```
@@ -120,7 +125,7 @@ The function accepts the following arguments:
120125
import array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-array@deno/mod.js';
121126
import ndarray2array from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-to-array@deno/mod.js';
122127
import zeroTo from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-zero-to@deno/mod.js';
123-
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-base-reverse@v0.2.2-deno/mod.js';
128+
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/ndarray-base-reverse@deno/mod.js';
124129

125130
// Create a linear ndarray buffer:
126131
var buf = zeroTo( 16 );

0 commit comments

Comments
 (0)