Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 14, 2024
1 parent 07ae395 commit 13b9041
Show file tree
Hide file tree
Showing 63 changed files with 338 additions and 352 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2023 The Stdlib Authors.
Copyright (c) 2016-2024 The Stdlib Authors.
2 changes: 1 addition & 1 deletion append/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { Collection } from '@stdlib/types/array';
* // returns [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 ]
*
* @example
* var Float64Array = require( `@stdlib/array/float64` );
* var Float64Array = require( '@stdlib/array/float64' );
*
* var arr = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
* // returns <Float64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0 ]
Expand Down
10 changes: 5 additions & 5 deletions async/any-by-right/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ interface AnyByRightAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down Expand Up @@ -186,7 +186,7 @@ interface AnyByRightAsync {
* @param done - function to invoke upon completion
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down Expand Up @@ -239,7 +239,7 @@ interface AnyByRightAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -297,7 +297,7 @@ interface AnyByRightAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -357,7 +357,7 @@ interface AnyByRightAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down
10 changes: 5 additions & 5 deletions async/any-by/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ interface AnyByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down Expand Up @@ -186,7 +186,7 @@ interface AnyByAsync {
* @param done - function to invoke upon completion
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down Expand Up @@ -239,7 +239,7 @@ interface AnyByAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -297,7 +297,7 @@ interface AnyByAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -357,7 +357,7 @@ interface AnyByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, bool ) {
* if ( error ) {
Expand Down
10 changes: 5 additions & 5 deletions async/bifurcate-by/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ interface BifurcateByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down Expand Up @@ -215,7 +215,7 @@ interface BifurcateByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down Expand Up @@ -264,7 +264,7 @@ interface BifurcateByAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -317,7 +317,7 @@ interface BifurcateByAsync {
* @returns function which invokes the predicate function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function predicate( file, next ) {
* var opts = {
Expand Down Expand Up @@ -378,7 +378,7 @@ interface BifurcateByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down
10 changes: 5 additions & 5 deletions async/count-by/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ interface CountByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down Expand Up @@ -219,7 +219,7 @@ interface CountByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down Expand Up @@ -267,7 +267,7 @@ interface CountByAsync {
* @returns function which invokes the indicator function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function indicator( file, next ) {
* var opts = {
Expand Down Expand Up @@ -325,7 +325,7 @@ interface CountByAsync {
* @returns function which invokes the indicator function once for each element in a collection
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function indicator( file, next ) {
* var opts = {
Expand Down Expand Up @@ -381,7 +381,7 @@ interface CountByAsync {
* @throws must provide valid options
*
* @example
* var readFile = require( `@stdlib/fs/read-file` );
* var readFile = require( '@stdlib/fs/read-file' );
*
* function done( error, result ) {
* if ( error ) {
Expand Down
Loading

0 comments on commit 13b9041

Please sign in to comment.