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

Skip to content

Commit 0cac01a

Browse files
committed
Auto-generated commit
1 parent e203308 commit 0cac01a

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/array-base-reverse@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/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.1-esm/index.mjs';
5661
```
@@ -107,7 +112,7 @@ var bool = ( out === x );
107112
108113
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@esm/index.mjs';
109114
import zeroTo from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-zero-to@esm/index.mjs';
110-
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-reverse@v0.2.1-esm/index.mjs';
115+
import reverse from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-reverse@esm/index.mjs';
111116
112117
var x = new Float64Array( zeroTo( 6 ) );
113118
// returns <Float64Array>[ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0 ]

0 commit comments

Comments
 (0)
0