8000 Auto-generated commit · stdlib-js/array-slice@5de73a6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5de73a6

Browse files
committed
Auto-generated commit
1 parent 37efbc6 commit 5de73a6

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 slice from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-slice@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-slice/tags). For example,
58+
5459
```javascript
5560
import slice from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-slice@v0.1.0-deno/mod.js';
5661
```
@@ -126,7 +131,7 @@ var out = slice( x, 1, 4 );
126131
```javascript
127132
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@deno/mod.js';
128133
import zeroTo from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-zero-to@deno/mod.js';
129-
import slice from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-slice@v0.1.0-deno/mod.js';
134+
import slice from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-slice@deno/mod.js';
130135
131136
var x = zeroTo( 6, 'float64' );
132137
// returns <Float64Array>[ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0 ]

0 commit comments

Comments
 (0)
0