8000 Auto-generated commit · stdlib-js/ndarray-empty-like@16f16b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 16f16b2

Browse files
committed
Auto-generated commit
1 parent 5c6fd42 commit 16f16b2

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:16.016Z
1+
2024-02-01T06:24:51.040Z

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-empty-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">
@@ -258,8 +260,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
258260
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
259261

260262
[deno-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/deno
263+
[deno-readme]: https://github.com/stdlib-js/ndarray-empty-like/blob/deno/README.md
261264
[umd-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/umd
265+
[umd-readme]: https://github.com/stdlib-js/ndarray-empty-like/blob/umd/README.md
262266
[esm-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/esm
267+
[esm-readme]: https://github.com/stdlib-js/ndarray-empty-like/blob/esm/README.md
263268
[branches-url]: https://github.com/stdlib-js/ndarray-empty-like/blob/main/branches.md
264269

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

docs/types/index.d.ts

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ interface OptionsWithDType extends Options {
237237
* @returns output array
238238
*
239239
* @example
240-
* var zeros = require( `@stdlib/ndarray/zeros` );
240+
* var zeros = require( '@stdlib/ndarray-zeros' );
241241
*
242242
* var x = zeros( [ 2, 2 ], {
243243
* 'dtype': 'float64'
@@ -273,7 +273,7 @@ declare function emptyLike( x: float64ndarray, options?: Options ): float64ndarr
273273
* @returns output array
274274
*
275275
* @example
276-
* var zeros = require( `@stdlib/ndarray/zeros` );
276+
* var zeros = require( '@stdlib/ndarray-zeros' );
277277
*
278278
* var x = zeros( [ 2, 2 ], {
279279
* 'dtype': 'float32'
@@ -309,7 +309,7 @@ declare function emptyLike( x: float32ndarray, options?: Options ): float32ndarr
309309
* @returns output array
310310
*
311311
* @example
312-
* var zeros = require( `@stdlib/ndarray/zeros` );
312+
* var zeros = require( '@stdlib/ndarray-zeros' );
313313
*
314314
* var x = zeros( [ 2, 2 ], {
315315
* 'dtype': 'complex128'
@@ -345,7 +345,7 @@ declare function emptyLike( x: complex128ndarray, options?: Options ): complex12
345345
* @returns output array
346346
*
347347
* @example
348-
* var zeros = require( `@stdlib/ndarray/zeros` );
348+
* var zeros = require( '@stdlib/ndarray-zeros' );
349349
*
350350
* var x = zeros( [ 2, 2 ], {
351351
* 'dtype': 'complex64'
@@ -381,7 +381,7 @@ declare function emptyLike( x: complex64ndarray, options?: Options ): complex64n
381381
* @returns output array
382382
*
383383
* @example
384-
* var zeros = require( `@stdlib/ndarray/zeros` );
384+
* var zeros = require( '@stdlib/ndarray-zeros' );
385385
*
386386
* var x = zeros( [ 2, 2 ], {
387387
* 'dtype': 'int32'
@@ -417,7 +417,7 @@ declare function emptyLike( x: int32ndarray, options?: Options ): int32ndarray;
417417
* @returns output array
418418
*
419419
* @example
420-
* var zeros = require( `@stdlib/ndarray/zeros` );
420+
* var zeros = require( '@stdlib/ndarray-zeros' );
421421
*
422422
* var x = zeros( [ 2, 2 ], {
423423
* 'dtype': 'int16'
@@ -453,7 +453,7 @@ declare function emptyLike( x: int16ndarray, options?: Options ): int16ndarray;
453453
* @returns output array
454454
*
455455
* @example
456-
* var zeros = require( `@stdlib/ndarray/zeros` );
456+
* var zeros = require( '@stdlib/ndarray-zeros' );
457457
*
458458
* var x = zeros( [ 2, 2 ], {
459459
* 'dtype': 'int8'
@@ -489,7 +489,7 @@ declare function emptyLike( x: int8ndarray, options?: Options ): int8ndarray;
489489
* @returns output array
490490
*
491491
* @example
492-
* var zeros = require( `@stdlib/ndarray/zeros` );
492+
* var zeros = require( '@stdlib/ndarray-zeros' );
493493
*
494494
* var x = zeros( [ 2, 2 ], {
495495
* 'dtype': 'uint32'
@@ -525,7 +525,7 @@ declare function emptyLike( x: uint32ndarray, options?: Options ): uint32ndarray
525525
* @returns output array
526526
*
527527
* @example
528-
* var zeros = require( `@stdlib/ndarray/zeros` );
528+
* var zeros = require( '@stdlib/ndarray-zeros' );
529529
*
530530
* var x = zeros( [ 2, 2 ], {
531531
* 'dtype': 'uint16'
@@ -561,7 +561,7 @@ declare function emptyLike( x: uint16ndarray, options?: Options ): uint16ndarray
561561
* @returns output array
562562
*
563563
* @example
564-
* var zeros = require( `@stdlib/ndarray/zeros` );
564+
* var zeros = require( '@stdlib/ndarray-zeros' );
565565
*
566566
* var x = zeros( [ 2, 2 ], {
567567
* 'dtype': 'uint8'
@@ -597,7 +597,7 @@ declare function emptyLike( x: uint8ndarray, options?: Options ): uint8ndarray;
597597
* @returns output array
598598
*
599599
* @example
600-
* var zeros = require( `@stdlib/ndarray/zeros` );
600+
* var zeros = require( '@stdlib/ndarray-zeros' );
601601
*
602602
* var x = zeros( [ 2, 2 ], {
603603
* 'dtype': 'uint8c'
@@ -634,7 +634,7 @@ declare function emptyLike( x: uint8cndarray, options?: Options ): uint8cndarray
634634
* @returns output array
635635
*
636636
* @example
637-
* var zeros = require( `@stdlib/ndarray/zeros` );
637+
* var zeros = require( '@stdlib/ndarray-zeros' );
638638
*
639639
* var x = zeros( [ 2, 2 ], {
640640
* 'dtype': 'generic'
@@ -673,7 +673,7 @@ declare function emptyLike( x: ndarray, options: Float64Options ): float64ndarra
673673
* @returns output array
674674
*
675675
* @example
676-
* var zeros = require( `@stdlib/ndarray/zeros` );
676+
* var zeros = require( '@stdlib/ndarray-zeros' );
677677
*
678678
* var x = zeros( [ 2, 2 ], {
679679
* 'dtype': 'float64'
@@ -712,7 +712,7 @@ declare function emptyLike( x: ndarray, options: Float32Options ): float32ndarra
712712
* @returns output array
713713
*
714714
* @example
715-
* var zeros = require( `@stdlib/ndarray/zeros` );
715+
* var zeros = require( '@stdlib/ndarray-zeros' );
716716
*
717717
* var x = zeros( [ 2, 2 ], {
718718
* 'dtype': 'float64'
@@ -751,7 +751,7 @@ declare function emptyLike( x: ndarray, options: Complex128Options ): complex128
751751
* @returns output array
752752
*
753753
* @example
754-
* var zeros = require( `@stdlib/ndarray/zeros` );
754+
* var zeros = require( '@stdlib/ndarray-zeros' );
755755
*
756756
* var x = zeros( [ 2, 2 ], {
757757
* 'dtype': 'float64'
@@ -790,7 +790,7 @@ declare function emptyLike( x: ndarray, options: Complex64Options ): complex64nd
790790
* @returns output array
791791
*
792792
* @example
793-
* var zeros = require( `@stdlib/ndarray/zeros` );
793+
* var zeros = require( '@stdlib/ndarray-zeros' );
794794
*
795795
* var x = zeros( [ 2, 2 ], {
796796
* 'dtype': 'float64'
@@ -829,7 +829,7 @@ declare function emptyLike( x: ndarray, options: Int32Options ): int32ndarray;
829829
* @returns output array
830830
*
831831
* @example
832-
* var zeros = require( `@stdlib/ndarray/zeros` );
832+
* var zeros = require( '@stdlib/ndarray-zeros' );
833833
*
834834
* var x = zeros( [ 2, 2 ], {
835835
* 'dtype': 'float64'
@@ -868,7 +868,7 @@ declare function emptyLike( x: ndarray, options: Int16Options ): int16ndarray;
868868
* @returns output array
869869
*
870870
* @example
871-
* var zeros = require( `@stdlib/ndarray/zeros` );
871+
* var zeros = require( '@stdlib/ndarray-zeros' );
872872
*
873873
* var x = zeros( [ 2, 2 ], {
874874
* 'dtype': 'float64'
@@ -907,7 +907,7 @@ declare function emptyLike( x: ndarray, options: Int8Options ): int8ndarray;
907907
* @returns output array
908908
*
909909
* @example
910-
* var zeros = require( `@stdlib/ndarray/zeros` );
910+
* var zeros = require( '@stdlib/ndarray-zeros' );
911911
*
912912
* var x = zeros( [ 2, 2 ], {
913913
* 'dtype': 'float64'
@@ -946,7 +946,7 @@ declare function emptyLike( x: ndarray, options: Uint32Options ): uint32ndarray;
946946
* @returns output array
947947
*
948948
* @example
949-
* var zeros = require( `@stdlib/ndarray/zeros` );
949+
* var zeros = require( '@stdlib/ndarray-zeros' );
950950
*
951951
* var x = zeros( [ 2, 2 ], {
952952
* 'dtype': 'float64'
@@ -985,7 +985,7 @@ declare function emptyLike( x: ndarray, options: Uint16Options ): uint16ndarray;
985985
* @returns output array
986986
*
987987
* @example
988-
* var zeros = require( `@stdlib/ndarray/zeros` );
988+
* var zeros = require( '@stdlib/ndarray-zeros' );
989989
*
990990
* var x = zeros( [ 2, 2 ], {
991991
* 'dtype': 'float64'
@@ -1024,7 +1024,7 @@ declare function emptyLike( x: ndarray, options: Uint8Options ): uint8ndarray;
10241024
* @returns output array
10251025
*
10261026
* @example
1027-
* var zeros = require( `@stdlib/ndarray/zeros` );
1027+
* var zeros = require( '@stdlib/ndarray-zeros' );
10281028
*
10291029
* var x = zeros( [ 2, 2 ], {
10301030
* 'dtype': 'float64'
@@ -1063,7 +1063,7 @@ declare function emptyLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
10631063
* @returns output array
10641064
*
10651065
* @example
1066-
* var zeros = require( `@stdlib/ndarray/zeros` );
1066+
* var zeros = require( '@stdlib/ndarray-zeros' );
10671067
*
10681068
* var x = zeros( [ 2, 2 ], {
10691069
* 'dtype': 'float64'

0 commit comments

Comments
 (0)
0