8000 Auto-generated commit · stdlib-js/ndarray-base-reverse@db1c11f · GitHub
[go: up one dir, main page]

Skip to content

Commit db1c11f

Browse files
committed
Auto-generated commit
1 parent e706cce commit db1c11f

File tree

5 files changed

+56
-48
lines changed

5 files changed

+56
-48
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-01T05:10:37.385Z
1+
2024-02-01T06:00:36.962Z

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-base-reverse
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">
@@ -261,8 +263,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
261263
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
262264

263265
[deno-url]: https://github.com/stdlib-js/ndarray-base-reverse/tree/deno
266+
[deno-readme]: https://github.com/stdlib-js/ndarray-base-reverse/blob/deno/README.md
264267
[umd-url]: https://github.com/stdlib-js/ndarray-base-reverse/tree/umd
268+
[umd-readme]: https://github.com/stdlib-js/ndarray-base-reverse/blob/umd/README.md
265269
[esm-url]: https://github.com/stdlib-js/ndarray-base-reverse/tree/esm
270+
[esm-readme]: https://github.com/stdlib-js/ndarray-base-reverse/blob/esm/README.md
266271
[branches-url]: https://github.com/stdlib-js/ndarray-base-reverse/blob/main/branches.md
267272

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

docs/types/index.d.ts

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ import { typedndarray, genericndarray, float64ndarray, float32ndarray, int32ndar
3030
* @returns output array
3131
*
3232
* @example
33-
* var typedarray = require( `@stdlib/array/typed` );
34-
* var ndarray = require( `@stdlib/ndarray/ctor` );
35-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
33+
* var typedarray = require( '@stdlib/array-typed' );
34+
* var ndarray = require( '@stdlib/ndarray-ctor' );
35+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
3636
*
3737
* var buffer = typedarray( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ], 'float64' );
3838
* var shape = [ 3, 2 ];
@@ -67,9 +67,9 @@ declare function reverse( x: float64ndarray, writable: boolean ): float64ndarray
6767
* @returns output array
6868
*
6969
* @example
70-
* var typedarray = require( `@stdlib/array/typed` );
71-
* var ndarray = require( `@stdlib/ndarray/ctor` );
72-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
70+
* var typedarray = require( '@stdlib/array-typed' );
71+
* var ndarray = require( '@stdlib/ndarray-ctor' );
72+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
7373
*
7474
* var buffer = typedarray( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ], 'float32' );
7575
* var shape = [ 3, 2 ];
@@ -104,9 +104,9 @@ declare function reverse( x: float32ndarray, writable: boolean ): float32ndarray
104104
* @returns output array
105105
*
106106
* @example
107-
* var typedarray = require( `@stdlib/array/typed` );
108-
* var ndarray = require( `@stdlib/ndarray/ctor` );
109-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
107+
* var typedarray = require( '@stdlib/array-typed' );
108+
* var ndarray = require( '@stdlib/ndarray-ctor' );
109+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
110110
*
111111
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'int32' );
112112
* var shape = [ 3, 2 ];
@@ -141,9 +141,9 @@ declare function reverse( x: int32ndarray, writable: boolean ): int32ndarray;
141141
* @returns output array
142142
*
143143
* @example
144-
* var typedarray = require( `@stdlib/array/typed` );
145-
* var ndarray = require( `@stdlib/ndarray/ctor` );
146-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
144+
* var typedarray = require( '@stdlib/array-typed' );
145+
* var ndarray = require( '@stdlib/ndarray-ctor' );
146+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
147147
*
148148
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'int16' );
149149
* var shape = [ 3, 2 ];
@@ -178,9 +178,9 @@ declare function reverse( x: int16ndarray, writable: boolean ): int16ndarray;
178178
* @returns output array
179179
*
180180
* @example
181-
* var typedarray = require( `@stdlib/array/typed` );
182-
* var ndarray = require( `@stdlib/ndarray/ctor` );
183-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
181+
* var typedarray = require( '@stdlib/array-typed' );
182+
* var ndarray = require( '@stdlib/ndarray-ctor' );
183+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
184184
*
185185
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'int8' );
186186
* var shape = [ 3, 2 ];
@@ -215,9 +215,9 @@ declare function reverse( x: int8ndarray, writable: boolean ): int8ndarray;
215215
* @returns output array
216216
*
217217
* @example
218-
* var typedarray = require( `@stdlib/array/typed` );
219-
* var ndarray = require( `@stdlib/ndarray/ctor` );
220-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
218+
* var typedarray = require( '@stdlib/array-typed' );
219+
* var ndarray = require( '@stdlib/ndarray-ctor' );
220+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
221221
*
222222
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'uint32' );
223223
* var shape = [ 3, 2 ];
@@ -252,9 +252,9 @@ declare function reverse( x: uint32ndarray, writable: boolean ): uint32ndarray;
252252
* @returns output array
253253
*
254254
* @example
255-
* var typedarray = require( `@stdlib/array/typed` );
256-
* var ndarray = require( `@stdlib/ndarray/ctor` );
257-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
255+
* var typedarray = require( '@stdlib/array-typed' );
256+
* var ndarray = require( '@stdlib/ndarray-ctor' );
257+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
258258
*
259259
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'uint16' );
260260
* var shape = [ 3, 2 ];
@@ -289,9 +289,9 @@ declare function reverse( x: uint16ndarray, writable: boolean ): uint16ndarray;
289289
* @returns output array
290290
*
291291
* @example
292-
* var typedarray = require( `@stdlib/array/typed` );
293-
* var ndarray = require( `@stdlib/ndarray/ctor` );
294-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
292+
* var typedarray = require( '@stdlib/array-typed' );
293+
* var ndarray = require( '@stdlib/ndarray-ctor' );
294+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
295295
*
296296
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'uint8' );
297297
* var shape = [ 3, 2 ];
@@ -326,9 +326,9 @@ declare function reverse( x: uint8ndarray, writable: boolean ): uint8ndarray;
326326
* @returns output array
327327
*
328328
* @example
329-
* var typedarray = require( `@stdlib/array/typed` );
330-
* var ndarray = require( `@stdlib/ndarray/ctor` );
331-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
329+
* var typedarray = require( '@stdlib/array-typed' );
330+
* var ndarray = require( '@stdlib/ndarray-ctor' );
331+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
332332
*
333333
* var buffer = typedarray( [ 1, 2, 3, 4, 5, 6 ], 'uint8c' );
334334
* var shape = [ 3, 2 ];
@@ -363,9 +363,9 @@ declare function reverse( x: uint8cndarray, writable: boolean ): uint8cndarray;
363363
* @returns output array
364364
*
365365
* @example
366-
* var typedarray = require( `@stdlib/array/typed` );
367-
* var ndarray = require( `@stdlib/ndarray/ctor` );
368-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
366+
* var typedarray = require( '@stdlib/array-typed' );
367+
* var ndarray = require( '@stdlib/ndarray-ctor' );
368+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
369369
*
370370
* var buffer = typedarray( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ], 'complex128' );
371371
* var shape = [ 3, 2 ];
@@ -394,9 +394,9 @@ declare function reverse( x: complex128ndarray, writable: boolean ): complex128n
394394
* @returns output array
395395
*
396396
* @example
397-
* var typedarray = require( `@stdlib/array/typed` );
398-
* var ndarray = require( `@stdlib/ndarray/ctor` );
399-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
397+
* var typedarray = require( '@stdlib/array-typed' );
398+
* var ndarray = require( '@stdlib/ndarray-ctor' );
399+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
400400
*
401401
* var buffer = typedarray( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ], 'complex64' );
402402
* var shape = [ 3, 2 ];
@@ -425,9 +425,9 @@ declare function reverse( x: complex64ndarray, writable: boolean ): complex64nda
425425
* @returns output array
426426
*
427427
* @example
428-
* var typedarray = require( `@stdlib/array/typed` );
429-
* var ndarray = require( `@stdlib/ndarray/ctor` );
430-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
428+
* var typedarray = require( '@stdlib/array-typed' );
429+
* var ndarray = require( '@stdlib/ndarray-ctor' );
430+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
431431
*
432432
* var buffer = [ 1, 2, 3, 4, 5, 6 ];
433433
* var shape = [ 3, 2 ];
@@ -462,9 +462,9 @@ declare function reverse<T = unknown>( x: genericndarray<T>, writable: boolean )
462462
* @returns output array
463463
*
464464
* @example
465-
* var typedarray = require( `@stdlib/array/typed` );
466-
* var ndarray = require( `@stdlib/ndarray/ctor` );
467-
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
465+
* var typedarray = require( '@stdlib/array-typed' );
466+
* var ndarray = require( '@stdlib/ndarray-ctor' );
467+
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
468468
*
469469
* var buffer = [ 1, 2, 3, 4, 5, 6 ];
470470
* var shape = [ 3, 2 ];

0 commit comments

Comments
 (0)
0