8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c6fd42 commit 16f16b2Copy full SHA for 16f16b2
.github/.keepalive
@@ -1 +1 @@
1
-2024-01-01T05:30:16.016Z
+2024-02-01T06:24:51.040Z
NOTICE
-Copyright (c) 2016-2023 The Stdlib Authors.
+Copyright (c) 2016-2024 The Stdlib Authors.
README.md
@@ -55,12 +55,14 @@ npm install @stdlib/ndarray-empty-like
55
56
Alternatively,
57
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].
+- 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]).
+- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
+- 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]).
61
62
The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
63
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
+
66
</section>
67
68
<section class="usage">
@@ -258,8 +260,11 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
258
260
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
259
261
262
[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
264
[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
266
[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
268
[branches-url]: https://github.com/stdlib-js/ndarray-empty-like/blob/main/branches.md
269
270
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/ndarray-empty-like/main/LICENSE
branches.md
@@ -24,9 +24,9 @@ This repository has the following branches:
24
25
- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
26
- **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.
+- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
+- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
+- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
30
31
The following diagram illustrates the relationships among the above branches:
32
@@ -49,5 +49,8 @@ C -->|bundle| F[umd];
49
[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/empty-like
50
[production-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/production
51
52
53
-[esm-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/esm
54
+[esm-url]: https://github.com/stdlib-js/ndarray-empty-like/tree/esm
docs/types/index.d.ts
@@ -237,7 +237,7 @@ interface OptionsWithDType extends Options {
237
* @returns output array
238
*
239
* @example
240
-* var zeros = require( `@stdlib/ndarray/zeros` );
+* var zeros = require( '@stdlib/ndarray-zeros' );
241
242
* var x = zeros( [ 2, 2 ], {
243
* 'dtype': 'float64'
@@ -273,7 +273,7 @@ declare function emptyLike( x: float64ndarray, options?: Options ): float64ndarr
273
274
275
276
277
278
279
* 'dtype': 'float32'
@@ -309,7 +309,7 @@ declare function emptyLike( x: float32ndarray, options?: Options ): float32ndarr
309
310
311
312
313
314
315
* 'dtype': 'complex128'
@@ -345,7 +345,7 @@ declare function emptyLike( x: complex128ndarray, options?: Options ): complex12
345
346
347
348
349
350
351
* 'dtype': 'complex64'
@@ -381,7 +381,7 @@ declare function emptyLike( x: complex64ndarray, options?: Options ): complex64n
381
382
383
384
385
386
387
* 'dtype': 'int32'
@@ -417,7 +417,7 @@ declare function emptyLike( x: int32ndarray, options?: Options ): int32ndarray;
417
418
419
420
421
422
423
* 'dtype': 'int16'
@@ -453,7 +453,7 @@ declare function emptyLike( x: int16ndarray, options?: Options ): int16ndarray;
453
454
455
456
457
458
459
* 'dtype': 'int8'
@@ -489,7 +489,7 @@ declare function emptyLike( x: int8ndarray, options?: Options ): int8ndarray;
489
490
491
492
493
494
495
* 'dtype': 'uint32'
@@ -525,7 +525,7 @@ declare function emptyLike( x: uint32ndarray, options?: Options ): uint32ndarray
525
526
527
528
529
530
531
* 'dtype': 'uint16'
@@ -561,7 +561,7 @@ declare function emptyLike( x: uint16ndarray, options?: Options ): uint16ndarray
561
562
563
564
565
566
567
* 'dtype': 'uint8'
@@ -597,7 +597,7 @@ declare function emptyLike( x: uint8ndarray, options?: Options ): uint8ndarray;
597
598
599
600
601
602
603
* 'dtype': 'uint8c'
@@ -634,7 +634,7 @@ declare function emptyLike( x: uint8cndarray, options?: Options ): uint8cndarray
634
635
636
637
638
639
640
* 'dtype': 'generic'
@@ -673,7 +673,7 @@ declare function emptyLike( x: ndarray, options: Float64Options ): float64ndarra
673
674
675
676
677
678
679
@@ -712,7 +712,7 @@ declare function emptyLike( x: ndarray, options: Float32Options ): float32ndarra
712
713
714
715
716
717
718
@@ -751,7 +751,7 @@ declare function emptyLike( x: ndarray, options: Complex128Options ): complex128
751
752
753
754
755
756
757
@@ -790,7 +790,7 @@ declare function emptyLike( x: ndarray, options: Complex64Options ): complex64nd
790
791
792
793
794
795
796
@@ -829,7 +829,7 @@ declare function emptyLike( x: ndarray, options: Int32Options ): int32ndarray;
829
830
831
832
833
834
835
@@ -868,7 +868,7 @@ declare function emptyLike( x: ndarray, options: Int16Options ): int16ndarray;
868
869
870
871
872
873
874
@@ -907,7 +907,7 @@ declare function emptyLike( x: ndarray, options: Int8Options ): int8ndarray;
907
908
909
910
911
912
913
@@ -946,7 +946,7 @@ declare function emptyLike( x: ndarray, options: Uint32Options ): uint32ndarray;
946
947
948
949
950
951
952
@@ -985,7 +985,7 @@ declare function emptyLike( x: ndarray, options: Uint16Options ): uint16ndarray;
985
986
987
988
989
990
991
@@ -1024,7 +1024,7 @@ declare function emptyLike( x: ndarray, options: Uint8Options ): uint8ndarray;
1024
1025
1026
1027
1028
1029
1030
@@ -1063,7 +1063,7 @@ declare function emptyLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
1063
1064
1065
1066
1067
1068
1069