Skip to content

Commit cc2f756

Browse files
committed
Auto-generated commit
1 parent 81f38dc commit cc2f756

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,19 @@ limitations under the License.
4141

4242
## Usage
4343

44+
```javascript
45+
import uniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@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/random-array-uniform/tags). For example,
48+
4449
```javascript
4550
import uniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@v0.2.0-deno/mod.js';
4651
```
4752

4853
You can also import the following named exports from the package:
4954

5055
```javascript
51-
import { factory } from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@v0.2.0-deno/mod.js';
56+
import { factory } from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@deno/mod.js';
5257
```
5358

5459
#### uniform( len, a, b\[, options] )
@@ -338,7 +343,7 @@ var sz = random.byteLength;
338343

339344
```javascript
340345
import logEach from 'https://cdn.jsdelivr.net/gh/stdlib-js/console-log-each@deno/mod.js';
341-
import uniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@v0.2.0-deno/mod.js';
346+
import uniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-array-uniform@deno/mod.js';
342347

343348
// Create a function for generating random arrays originating from the same state:
344349
var random = uniform.factory( 2.0, 5.0, {

0 commit comments

Comments
 (0)