Skip to content

Commit 910c413

Browse files
committed
Auto-generated commit
1 parent e0068c5 commit 910c413

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
@@ -41,6 +41,11 @@ limitations under the License.
4141

4242
## Usage
4343

44+
```javascript
45+
import place from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-place@deno/mod.js';
46+
```
47+
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-place/tags). For example,
48+
4449
```javascript
4550
import place from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-place@v0.1.1-deno/mod.js';
4651
```
@@ -133,7 +138,7 @@ import filledBy from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-filled-by
133138
import discreteUniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-base-discrete-uniform@deno/mod.js';
134139
import bernoulli from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-base-bernoulli@deno/mod.js';
135140
import linspace from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-linspace@deno/mod.js';
136-
import place from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-place@v0.1.1-deno/mod.js';
141+
import place from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-place@deno/mod.js';
137142

138143
// Generate a linearly spaced array:
139144
var x = linspace( 0, 100, 11 );

0 commit comments

Comments
 (0)