8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37efbc6 commit 5de73a6Copy full SHA for 5de73a6
README.md
@@ -51,6 +51,11 @@ limitations under the License.
51
52
## Usage
53
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
+
59
```javascript
60
import slice from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-slice@v0.1.0-deno/mod.js';
61
```
@@ -126,7 +131,7 @@ var out = slice( x, 1, 4 );
126
131
127
132
import Float64Array from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@deno/mod.js';
128
133
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
130
135
136
var x = zeroTo( 6, 'float64' );
137
// returns <Float64Array>[ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0 ]