Skip to content

Commit 60a5047

Browse files
committed
Auto-generated commit
1 parent cf3006d commit 60a5047

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-01T05:21:15.086Z
1+
2024-02-01T06:12:25.885Z

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2023 The Stdlib Authors.
1+
Copyright (c) 2016-2024 The Stdlib Authors.

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,14 @@ npm install @stdlib/iter-to-array-view-right
5555

5656
Alternatively,
5757

58-
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm` branch][esm-url].
59-
- If you are using Deno, visit the [`deno` branch][deno-url].
60-
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url].
58+
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
59+
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
60+
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).
6161

6262
The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
6363

64+
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
65+
6466
</section>
6567

6668
<section class="usage">
@@ -328,8 +330,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
328330
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
329331

330332
[deno-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/deno
333+
[deno-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/deno/README.md
331334
[umd-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/umd
335+
[umd-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/umd/README.md
332336
[esm-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/esm
337+
[esm-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/esm/README.md
333338
[branches-url]: https://github.com/stdlib-js/iter-to-array-view-right/blob/main/branches.md
334339

335340
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/iter-to-array-view-right/main/LICENSE

branches.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ This repository has the following branches:
2424

2525
- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
2626
- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network).
27-
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers.
28-
- **deno**: [Deno][deno-url] branch for use in Deno.
29-
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments.
27+
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
28+
- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
29+
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
3030

3131
The following diagram illustrates the relationships among the above branches:
3232

@@ -49,5 +49,8 @@ C -->|bundle| F[umd];
4949
[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/iter/to-array-view-right
5050
[production-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/production
5151
[deno-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/iter-to-array-view-right/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/iter-to-array-view-right/blob/esm/README.md

docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ type MapFunction<T, U, V> = Nullary<U, V> | Unary<T, U, V> | Binary<T, U, V> | T
8181
* @returns output array
8282
*
8383
* @example
84-
* var randu = require( `@stdlib/random/iter/randu` );
85-
* var Float64Array = require( `@stdlib/array/float64` );
84+
* var randu = require( '@stdlib/random-iter-randu' );
85+
* var Float64Array = require( '@stdlib/array-float64' );
8686
*
8787
* var iter = randu({
8888
* 'iter': 10
@@ -105,8 +105,8 @@ declare function iterator2arrayviewRight<T = unknown, U = unknown, V = unknown>(
105105
* @returns output array
106106
*
107107
* @example
108-
* var randu = require( `@stdlib/random/iter/randu` );
109-
* var Float64Array = require( `@stdlib/array/float64` );
108+
* var randu = require( '@stdlib/random-iter-randu' );
109+
* var Float64Array = require( '@stdlib/array-float64' );
110110
*
111111
* var iter = randu({
112112
* 'iter': 10
@@ -131,8 +131,8 @@ declare function iterator2arrayviewRight<T = unknown, U = unknown, V = unknown>(
131131
* @returns output array
132132
*
133133
* @example
134-
* var randu = require( `@stdlib/random/iter/randu` );
135-
* var Float64Array = require( `@stdlib/array/float64` );
134+
* var randu = require( '@stdlib/random-iter-randu' );
135+
* var Float64Array = require( '@stdlib/array-float64' );
136136
*
137137
* var iter = randu({
138138
* 'iter': 10

0 commit comments

Comments
 (0)