8000 Auto-generated commit · stdlib-js/array-base-reverse@320959b · GitHub
[go: up one dir, main page]

Skip to content

Commit 320959b

Browse files
committed
Auto-generated commit
1 parent 02076ca commit 320959b

File tree

1 file changed

+6
-1
lines changed
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/array-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/array-base-reverse/tags). For example,
58+
5459
```javascript
5560
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-reverse@v0.2.2-deno/mod.js';
5661
```
@@ -102,7 +107,7 @@ var bool = ( out === x );
102107
```javascript
103108
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@deno/mod.js';
104109
import zeroTo from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-zero-to@deno/mod.js';
105-
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-reverse@v0.2.2-deno/mod.js';
110+
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-reverse@deno/mod.js';
106111
107112
var x = new Float64Array( zeroTo( 6 ) );
108113
// returns <Float64Array>[ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0 ]