Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit588d697

Browse files
committed
Auto-generated commit
1 parent0879e57 commit588d697

File tree

5 files changed

+27
-19
lines changed

5 files changed

+27
-19
lines changed

‎.github/.keepalive‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-01T03:14:24.923Z
1+
2024-02-01T03:53:35.412Z

‎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/slice-base-length
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
<sectionclass="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/slice-base-length/tree/deno
259+
[deno-readme]:https://github.com/stdlib-js/slice-base-length/blob/deno/README.md
257260
[umd-url]:https://github.com/stdlib-js/slice-base-length/tree/umd
261+
[umd-readme]:https://github.com/stdlib-js/slice-base-length/blob/umd/README.md
258262
[esm-url]:https://github.com/stdlib-js/slice-base-length/tree/esm
263+
[esm-readme]:https://github.com/stdlib-js/slice-base-length/blob/esm/README.md
259264
[branches-url]:https://github.com/stdlib-js/slice-base-length/blob/main/branches.md
260265

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

‎docs/types/index.d.ts‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import { Slice } from '@stdlib/types/slice';
2929
*@returns number of elements
3030
*
3131
*@example
32-
* var Slice = require(`@stdlib/slice/ctor` );
33-
* var normalizeSlice = require(`@stdlib/slice/base/normalize-slice` );
32+
* var Slice = require('@stdlib/slice-ctor' );
33+
* var normalizeSlice = require('@stdlib/slice-base-normalize-slice' );
3434
*
3535
* var s = new Slice( 2, null, 1 );
3636
* // returns <Slice>
@@ -45,8 +45,8 @@ import { Slice } from '@stdlib/types/slice';
4545
* // returns 3
4646
*
4747
*@example
48-
* var Slice = require(`@stdlib/slice/ctor` );
49-
* var normalizeSlice = require(`@stdlib/slice/base/normalize-slice` );
48+
* var Slice = require('@stdlib/slice-ctor' );
49+
* var normalizeSlice = require('@stdlib/slice-base-normalize-slice' );
5050
*
5151
* var s = new Slice( 2, null, 2 );
5252
* // returns <Slice>
@@ -61,8 +61,8 @@ import { Slice } from '@stdlib/types/slice';
6161
* // returns 2
6262
*
6363
*@example
64-
* var Slice = require(`@stdlib/slice/ctor` );
65-
* var normalizeSlice = require(`@stdlib/slice/base/normalize-slice` );
64+
* var Slice = require('@stdlib/slice-ctor' );
65+
* var normalizeSlice = require('@stdlib/slice-base-normalize-slice' );
6666
*
6767
* var s = new Slice( -1, null, -2 );
6868
*
@@ -76,8 +76,8 @@ import { Slice } from '@stdlib/types/slice';
7676
* // returns 3
7777
*
7878
*@example
79-
* var Slice = require(`@stdlib/slice/ctor` );
80-
* var normalizeSlice = require(`@stdlib/slice/base/normalize-slice` );
79+
* var Slice = require('@stdlib/slice-ctor' );
80+
* var normalizeSlice = require('@stdlib/slice-base-normalize-slice' );
8181
*
8282
* var s = new Slice( 3, 5, -1 );
8383
*
@@ -91,8 +91,8 @@ import { Slice } from '@stdlib/types/slice';
9191
* // returns 0
9292
*
9393
*@example
94-
* var Slice = require(`@stdlib/slice/ctor` );
95-
* var normalizeSlice = require(`@stdlib/slice/base/normalize-slice` );
94+
* var Slice = require('@stdlib/slice-ctor' );
95+
* var normalizeSlice = require('@stdlib/slice-base-normalize-slice' );
9696
*
9797
* var s = new Slice( 5, 3, 1 );
9898
*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp