Skip to content

Commit c7000e5

Browse files
committed
Auto-generated commit
1 parent 8c408c9 commit c7000e5

File tree

5 files changed

+40
-32
lines changed

5 files changed

+40
-32
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-01T05:30:00.811Z
1+
2024-02-01T06:24:32.016Z

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/ndarray-zeros-like
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">
@@ -254,8 +256,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
254256
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
255257

256258
[deno-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/deno
259+
[deno-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/deno/README.md
257260
[umd-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/umd
261+
[umd-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/umd/README.md
258262
[esm-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/esm
263+
[esm-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/esm/README.md
259264
[branches-url]: https://github.com/stdlib-js/ndarray-zeros-like/blob/main/branches.md
260265

261266
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/ndarray-zeros-like/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/ndarray/zeros-like
5050
[production-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/production
5151
[deno-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/ndarray-zeros-like/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/ndarray-zeros-like/blob/esm/README.md

docs/types/index.d.ts

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ interface OptionsWithDType extends Options {
243243
* @returns zero-filled array
244244
*
245245
* @example
246-
* var zeros = require( `@stdlib/ndarray/zeros` );
246+
* var zeros = require( '@stdlib/ndarray-zeros' );
247247
*
248248
* var x = zeros( [ 2, 2 ], {
249249
* 'dtype': 'float64'
@@ -280,7 +280,7 @@ declare function zerosLike( x: float64ndarray, options?: Options ): float64ndarr
280280
* @returns zero-filled array
281281
*
282282
* @example
283-
* var zeros = require( `@stdlib/ndarray/zeros` );
283+
* var zeros = require( '@stdlib/ndarray-zeros' );
284284
*
285285
* var x = zeros( [ 2, 2 ], {
286286
* 'dtype': 'float32'
@@ -317,7 +317,7 @@ declare function zerosLike( x: float32ndarray, options?: Options ): float32ndarr
317317
* @returns zero-filled array
318318
*
319319
* @example
320-
* var zeros = require( `@stdlib/ndarray/zeros` );
320+
* var zeros = require( '@stdlib/ndarray-zeros' );
321321
*
322322
* var x = zeros( [ 2, 2 ], {
323323
* 'dtype': 'complex128'
@@ -354,7 +354,7 @@ declare function zerosLike( x: complex128ndarray, options?: Options ): complex12
354354
* @returns zero-filled array
355355
*
356356
* @example
357-
* var zeros = require( `@stdlib/ndarray/zeros` );
357+
* var zeros = require( '@stdlib/ndarray-zeros' );
358358
*
359359
* var x = zeros( [ 2, 2 ], {
360360
* 'dtype': 'complex64'
@@ -391,7 +391,7 @@ declare function zerosLike( x: complex64ndarray, options?: Options ): complex64n
391391
* @returns zero-filled array
392392
*
393393
* @example
394-
* var zeros = require( `@stdlib/ndarray/zeros` );
394+
* var zeros = require( '@stdlib/ndarray-zeros' );
395395
*
396396
* var x = zeros( [ 2, 2 ], {
397397
* 'dtype': 'int32'
@@ -428,7 +428,7 @@ declare function zerosLike( x: int32ndarray, options?: Options ): int32ndarray;
428428
* @returns zero-filled array
429429
*
430430
* @example
431-
* var zeros = require( `@stdlib/ndarray/zeros` );
431+
* var zeros = require( '@stdlib/ndarray-zeros' );
432432
*
433433
* var x = zeros( [ 2, 2 ], {
434434
* 'dtype': 'int16'
@@ -465,7 +465,7 @@ declare function zerosLike( x: int16ndarray, options?: Options ): int16ndarray;
465465
* @returns zero-filled array
466466
*
467467
* @example
468-
* var zeros = require( `@stdlib/ndarray/zeros` );
468+
* var zeros = require( '@stdlib/ndarray-zeros' );
469469
*
470470
* var x = zeros( [ 2, 2 ], {
471471
* 'dtype': 'int8'
@@ -502,7 +502,7 @@ declare function zerosLike( x: int8ndarray, options?: Options ): int8ndarray;
502502
* @returns zero-filled array
503503
*
504504
* @example
505-
* var zeros = require( `@stdlib/ndarray/zeros` );
505+
* var zeros = require( '@stdlib/ndarray-zeros' );
506506
*
507507
* var x = zeros( [ 2, 2 ], {
508508
* 'dtype': 'uint32'
@@ -539,7 +539,7 @@ declare function zerosLike( x: uint32ndarray, options?: Options ): uint32ndarray
539539
* @returns zero-filled array
540540
*
541541
* @example
542-
* var zeros = require( `@stdlib/ndarray/zeros` );
542+
* var zeros = require( '@stdlib/ndarray-zeros' );
543543
*
544544
* var x = zeros( [ 2, 2 ], {
545545
* 'dtype': 'uint16'
@@ -576,7 +576,7 @@ declare function zerosLike( x: uint16ndarray, options?: Options ): uint16ndarray
576576
* @returns zero-filled array
577577
*
578578
* @example
579-
* var zeros = require( `@stdlib/ndarray/zeros` );
579+
* var zeros = require( '@stdlib/ndarray-zeros' );
580580
*
581581
* var x = zeros( [ 2, 2 ], {
582582
* 'dtype': 'uint8'
@@ -613,7 +613,7 @@ declare function zerosLike( x: uint8ndarray, options?: Options ): uint8ndarray;
613613
* @returns zero-filled array
614614
*
615615
* @example
616-
* var zeros = require( `@stdlib/ndarray/zeros` );
616+
* var zeros = require( '@stdlib/ndarray-zeros' );
617617
*
618618
* var x = zeros( [ 2, 2 ], {
619619
* 'dtype': 'uint8c'
@@ -651,7 +651,7 @@ declare function zerosLike( x: uint8cndarray, options?: Options ): uint8cndarray
651651
* @returns zero-filled array
652652
*
653653
* @example
654-
* var zeros = require( `@stdlib/ndarray/zeros` );
654+
* var zeros = require( '@stdlib/ndarray-zeros' );
655655
*
656656
* var x = zeros( [ 2, 2 ], {
657657
* 'dtype': 'generic'
@@ -691,7 +691,7 @@ declare function zerosLike( x: ndarray, options: Float64Options ): float64ndarra
691691
* @returns zero-filled array
692692
*
693693
* @example
694-
* var zeros = require( `@stdlib/ndarray/zeros` );
694+
* var zeros = require( '@stdlib/ndarray-zeros' );
695695
*
696696
* var x = zeros( [ 2, 2 ], {
697697
* 'dtype': 'float64'
@@ -731,7 +731,7 @@ declare function zerosLike( x: ndarray, options: Float32Options ): float32ndarra
731731
* @returns zero-filled array
732732
*
733733
* @example
734-
* var zeros = require( `@stdlib/ndarray/zeros` );
734+
* var zeros = require( '@stdlib/ndarray-zeros' );
735735
*
736736
* var x = zeros( [ 2, 2 ], {
737737
* 'dtype': 'float64'
@@ -771,7 +771,7 @@ declare function zerosLike( x: ndarray, options: Complex128Options ): complex128
771771
* @returns zero-filled array
772772
*
773773
* @example
774-
* var zeros = require( `@stdlib/ndarray/zeros` );
774+
* var zeros = require( '@stdlib/ndarray-zeros' );
775775
*
776776
* var x = zeros( [ 2, 2 ], {
777777
* 'dtype': 'float64'
@@ -811,7 +811,7 @@ declare function zerosLike( x: ndarray, options: Complex64Options ): complex64nd
811811
* @returns zero-filled array
812812
*
813813
* @example
814-
* var zeros = require( `@stdlib/ndarray/zeros` );
814+
* var zeros = require( '@stdlib/ndarray-zeros' );
815815
*
816816
* var x = zeros( [ 2, 2 ], {
817817
* 'dtype': 'float64'
@@ -851,7 +851,7 @@ declare function zerosLike( x: ndarray, options: Int32Options ): int32ndarray;
851851
* @returns zero-filled array
852852
*
853853
* @example
854-
* var zeros = require( `@stdlib/ndarray/zeros` );
854+
* var zeros = require( '@stdlib/ndarray-zeros' );
855855
*
856856
* var x = zeros( [ 2, 2 ], {
857857
* 'dtype': 'float64'
@@ -891,7 +891,7 @@ declare function zerosLike( x: ndarray, options: Int16Options ): int16ndarray;
891891
* @returns zero-filled array
892892
*
893893
* @example
894-
* var zeros = require( `@stdlib/ndarray/zeros` );
894+
* var zeros = require( '@stdlib/ndarray-zeros' );
895895
*
896896
* var x = zeros( [ 2, 2 ], {
897897
* 'dtype': 'float64'
@@ -931,7 +931,7 @@ declare function zerosLike( x: ndarray, options: Int8Options ): int8ndarray;
931931
* @returns zero-filled array
932932
*
933933
* @example
934-
* var zeros = require( `@stdlib/ndarray/zeros` );
934+
* var zeros = require( '@stdlib/ndarray-zeros' );
935935
*
936936
* var x = zeros( [ 2, 2 ], {
937937
* 'dtype': 'float64'
@@ -971,7 +971,7 @@ declare function zerosLike( x: ndarray, options: Uint32Options ): uint32ndarray;
971971
* @returns zero-filled array
972972
*
973973
* @example
974-
* var zeros = require( `@stdlib/ndarray/zeros` );
974+
* var zeros = require( '@stdlib/ndarray-zeros' );
975975
*
976976
* var x = zeros( [ 2, 2 ], {
977977
* 'dtype': 'float64'
@@ -1011,7 +1011,7 @@ declare function zerosLike( x: ndarray, options: Uint16Options ): uint16ndarray;
10111011
* @returns zero-filled array
10121012
*
10131013
* @example
1014-
* var zeros = require( `@stdlib/ndarray/zeros` );
1014+
* var zeros = require( '@stdlib/ndarray-zeros' );
10151015
*
10161016
* var x = zeros( [ 2, 2 ], {
10171017
* 'dtype': 'float64'
@@ -1051,7 +1051,7 @@ declare function zerosLike( x: ndarray, options: Uint8Options ): uint8ndarray;
10511051
* @returns zero-filled array
10521052
*
10531053
* @example
1054-
* var zeros = require( `@stdlib/ndarray/zeros` );
1054+
* var zeros = require( '@stdlib/ndarray-zeros' );
10551055
*
10561056
* var x = zeros( [ 2, 2 ], {
10571057
* 'dtype': 'float64'
@@ -1091,7 +1091,7 @@ declare function zerosLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
10911091
* @returns zero-filled array
10921092
*
10931093
* @example
1094-
* var zeros = require( `@stdlib/ndarray/zeros` );
1094+
* var zeros = require( '@stdlib/ndarray-zeros' );
10951095
*
10961096
* var x = zeros( [ 2, 2 ], {
10971097
* 'dtype': 'float64'

0 commit comments

Comments
 (0)