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 Nov 3, 2023
1 parent e00c507 commit debe7f8
Show file tree
Hide file tree
Showing 83 changed files with 111 additions and 116 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

2 changes: 1 addition & 1 deletion async/compose/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ type VariadicFunction = ( ...args: Array<any> ) => void;
*
* f( 6, done );
*/
declare function composeAsync( f0: BinaryFunction, f1: VariadicFunction, ...f: Array<VariadicFunction> ): CompositeFunction; // tslint-disable-line max-line-length
declare function composeAsync( f0: BinaryFunction, f1: VariadicFunction, ...f: Array<VariadicFunction> ): CompositeFunction;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/do-until/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type Fcn = ( i: number, next: Function ) => void;
*
* doUntilAsync( fcn, predicate, done );
*/
declare function doUntilAsync( fcn: Fcn, predicate: Predicate, done: DoneCallback, thisArg?: any ): void; // tslint-disable-line max-line-length
declare function doUntilAsync( fcn: Fcn, predicate: Predicate, done: DoneCallback, thisArg?: any ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/do-while/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type Fcn = ( i: number, next: Function ) => void;
*
* doWhileAsync( fcn, predicate, done );
*/
declare function doWhileAsync( fcn: Fcn, predicate: Predicate, done: DoneCallback, thisArg?: any ): void; // tslint-disable-line max-line-length
declare function doWhileAsync( fcn: Fcn, predicate: Predicate, done: DoneCallback, thisArg?: any ): void;


// EXPORTS //
Expand Down
3 changes: 1 addition & 2 deletions async/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

// TypeScript Version: 4.1

/* tslint:disable:max-line-length */
/* tslint:disable:max-file-line-count */
/* eslint-disable max-lines */

import anyByAsync = require( './../../../async/any-by' );
import anyByRightAsync = require( './../../../async/any-by-right' );
Expand Down
2 changes: 1 addition & 1 deletion async/function-sequence/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ type PipelineFunction = ( ...args: Array<any> ) => void;
*
* f( 6, done );
*/
declare function funseqAsync( f0: VariadicFunction, f1: BinaryFunction, ...f: Array<BinaryFunction> ): PipelineFunction; // tslint-disable-line max-line-length
declare function funseqAsync( f0: VariadicFunction, f1: BinaryFunction, ...f: Array<BinaryFunction> ): PipelineFunction;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/if-else/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ type Predicate = ( clbk: PredicateCallback ) => void;
* }
* ifelseAsync( predicate, 1.0, -1.0, done );
*/
declare function ifelseAsync( predicate: Predicate, x: any, y: any, done: Callback ): void; // tslint-disable-line max-line-length
declare function ifelseAsync( predicate: Predicate, x: any, y: any, done: Callback ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/if-then/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type ResultFunction = ( clbk: Callback ) => void;
* }
* ifthenAsync( predicate, x, y, done );
*/
declare function ifthenAsync( predicate: Predicate, x: ResultFunction, y: ResultFunction, done: Callback ): void; // tslint-disable-line max-line-length
declare function ifthenAsync( predicate: Predicate, x: ResultFunction, y: ResultFunction, done: Callback ): void;


// EXPORTS //
Expand Down
6 changes: 3 additions & 3 deletions async/map-keys/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type TernaryTransform = ( value: any, index: number, next: Callback ) => void;
* @param obj - the input object
* @param next - a callback to be invoked after processing an object `value`
*/
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void; // tslint-disable-line max-line-length
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void;

/**
* Transform function.
Expand All @@ -129,7 +129,7 @@ type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback
* @param obj - the input object
* @param next - a callback to be invoked after processing an object `value`
*/
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform; // tslint-disable-line max-line-length
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform;

/**
* Maps keys from one object to a new object having the same values.
Expand Down Expand Up @@ -201,7 +201,7 @@ interface MapKeysAsync {
* // Process each file in `files`:
* mapKeysAsync( files, opts, read, done );
*/
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void; // tslint-disable-line max-line-length
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void;

/**
* Maps keys from one object to a new object having the same values.
Expand Down
6 changes: 3 additions & 3 deletions async/map-values/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type TernaryTransform = ( value: any, index: number, next: Callback ) => void;
* @param obj - the input object
* @param next - a callback to be invoked after processing an object `value`
*/
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void; // tslint-disable-line max-line-length
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void;

/**
* Transform function.
Expand All @@ -129,7 +129,7 @@ type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback
* @param obj - the input object
* @param next - a callback to be invoked after processing an object `value`
*/
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform; // tslint-disable-line max-line-length
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform;

/**
* Maps keys from one object to a new object having the same values.
Expand Down Expand Up @@ -198,7 +198,7 @@ interface MapValuesAsync {
* // Process each file in `files`:
* mapValuesAsync( files, opts, getStats, done );
*/
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void; // tslint-disable-line max-line-length
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void;

/**
* Maps values from one object to a new object having the same keys.
Expand Down
2 changes: 1 addition & 1 deletion async/series-waterfall/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ interface Waterfall {
* waterfall();
* waterfall();
*/
factory( fcns: Array<Function>, clbk: DoneCallback, thisArg?: any ): WaterfallFunction; // tslint-disable-line max-line-length
factory( fcns: Array<Function>, clbk: DoneCallback, thisArg?: any ): WaterfallFunction;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion async/try-then/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ type TryFunction = ( clbk: Callback ) => void;
*
* trythenAsync( x, y, done );
*/
declare function trythenAsync( x: TryFunction, y: ThenFunction, done: Callback ): void; // tslint-disable-line max-line-length
declare function trythenAsync( x: TryFunction, y: ThenFunction, done: Callback ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/until/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type Fcn = ( i: number, next: Function ) => void;
*
* untilAsync( predicate, fcn, done );
*/
declare function untilAsync( predicate: Predicate, fcn: Fcn, done: DoneCallback, thisArg?: any ): void; // tslint-disable-line max-line-length
declare function untilAsync( predicate: Predicate, fcn: Fcn, done: DoneCallback, thisArg?: any ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion async/while/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ type Fcn = ( i: number, next: Function ) => void;
*
* whileAsync( predicate, fcn, done );
*/
declare function whileAsync( predicate: Predicate, fcn: Fcn, done: DoneCallback, thisArg?: any ): void; // tslint-disable-line max-line-length
declare function whileAsync( predicate: Predicate, fcn: Fcn, done: DoneCallback, thisArg?: any ): void;


// EXPORTS //
Expand Down
4 changes: 2 additions & 2 deletions bifurcate-in/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type Predicate = Nullary | Unary | Binary;
* var out = bifurcateIn( obj, predicate );
* // e.g., returns [ [ 'beep', 'boop', 'bar' ], [ 'foo' ] ]
*/
declare function bifurcateIn( obj: any, predicate: Predicate ): Array<Array<any>>; // tslint-disable-line max-line-length
declare function bifurcateIn( obj: any, predicate: Predicate ): Array<Array<any>>;

/**
* Splits an object's own and inherited property values into two groups according to a predicate function.
Expand Down Expand Up @@ -181,7 +181,7 @@ declare function bifurcateIn( obj: any, predicate: Predicate ): Array<Array<any>
* var out = bifurcateIn( obj, opts, predicate );
* // e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
*/
declare function bifurcateIn( obj: any, options: Options, predicate: Predicate ): Array<Array<any>>; // tslint-disable-line max-line-length
declare function bifurcateIn( obj: any, options: Options, predicate: Predicate ): Array<Array<any>>;


// EXPORTS //
Expand Down
4 changes: 2 additions & 2 deletions bifurcate-own/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ type Predicate = Nullary | Unary | Binary;
* var out = bifurcateOwn( obj, opts, predicate );
* // e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
*/
declare function bifurcateOwn( obj: any, predicate: Predicate ): Array<Array<any>>; // tslint-disable-line max-line-length
declare function bifurcateOwn( obj: any, predicate: Predicate ): Array<Array<any>>;

/**
* Splits an object's own property values into two groups according to a predicate function.
Expand Down Expand Up @@ -175,7 +175,7 @@ declare function bifurcateOwn( obj: any, predicate: Predicate ): Array<Array<any
* var out = bifurcateOwn( obj, opts, predicate );
* // e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
*/
declare function bifurcateOwn( obj: any, options: Options, predicate: Predicate ): Array<Array<any>>; // tslint-disable-line max-line-length
declare function bifurcateOwn( obj: any, options: Options, predicate: Predicate ): Array<Array<any>>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion common-keys-in/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
* var keys = commonKeysIn( obj1, obj2, obj3 );
* // returns [ 'a' ]
*/
declare function commonKeysIn( obj1: any, obj2: any, ...obj: Array<any> ): Array<string>; // tslint:disable-line:max-line-length
declare function commonKeysIn( obj1: any, obj2: any, ...obj: Array<any> ): Array<string>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion common-keys/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
* var keys = commonKeys( obj1, obj2, obj3 );
* // returns [ 'a' ]
*/
declare function commonKeys( obj1: any, obj2: any, ...obj: Array<any> ): Array<string>; // tslint:disable-line:max-line-length
declare function commonKeys( obj1: any, obj2: any, ...obj: Array<any> ): Array<string>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion curry-right/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type Closure = ( v: any ) => any;
* var sum = f( 2 )( 3 );
* // returns 5
*/
declare function curryRight( fcn: Function, arity: number, thisArg?: any ): Closure; // tslint-disable-line max-line-length
declare function curryRight( fcn: Function, arity: number, thisArg?: any ): Closure;

/**
* Transforms a function into a sequence of functions each accepting a single argument.
Expand Down
8 changes: 4 additions & 4 deletions decorate-after/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface Decorator {
* v = f( 5 );
* // returns -5
*/
<T extends Array<any>, U, V>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => V, thisArg?: any ): ( ...args: T ) => V; // tslint-disable-line max-line-length
<T extends Array<any>, U, V>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => V, thisArg?: any ): ( ...args: T ) => V;

/**
* Decorates a provided function such that the function's return value is provided as an argument to another function.
Expand Down Expand Up @@ -109,7 +109,7 @@ interface Decorator {
* var count = ctx.count;
* // returns 2
*/
<T extends Array<any>, U>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => void, thisArg?: any ): ( ...args: T ) => U; // tslint-disable-line max-line-length
<T extends Array<any>, U>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => void, thisArg?: any ): ( ...args: T ) => U;

/**
* Uses code generation to decorate a provided function such that the function's return value is provided as an argument to another function.
Expand Down Expand Up @@ -144,7 +144,7 @@ interface Decorator {
* v = f( 5 );
* // returns -5
*/
factory<T extends Array<any>, U, V>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => V, thisArg?: any ): ( ...args: T ) => V; // tslint-disable-line max-line-length
factory<T extends Array<any>, U, V>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => V, thisArg?: any ): ( ...args: T ) => V;

/**
* Uses code generation to decorate a provided function such that the function's return value is provided as an argument to another function.
Expand Down Expand Up @@ -202,7 +202,7 @@ interface Decorator {
* var count = ctx.count;
* // returns 2
*/
factory<T extends Array<any>, U>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => void, thisArg?: any ): ( ...args: T ) => U; // tslint-disable-line max-line-length
factory<T extends Array<any>, U>( fcn: ( ...args: T ) => U, arity: number, after: ( v: U ) => void, thisArg?: any ): ( ...args: T ) => U;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion deep-pluck/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ interface Options {
* var out = deepPluck( arr, 'a|b|c', {'sep':'|'} );
* // returns [ 1, 2 ]
*/
declare function deepPluck( arr: Array<any>, path: Array<any> | string, options?: Options ): Array<any>; // tslint-disable-line max-line-length
declare function deepPluck( arr: Array<any>, path: Array<any> | string, options?: Options ): Array<any>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion deep-set/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ interface DeepSet {
* });
* // returns true
*/
( obj: any, path: string | Array<string>, value: any, options?: Options ): boolean; // tslint-disable-line max-line-length
( obj: any, path: string | Array<string>, value: any, options?: Options ): boolean;

/**
* Creates a reusable deep set function.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Getter = () => any;
* console.error( err.message );
* }
*/
declare function setConfigurableReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void; // tslint:disable-line: max-line-length
declare function setConfigurableReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { PropertyName } from '@stdlib/types/object';
* console.error( err.message );
* }
*/
declare function setConfigurableReadOnly( obj: any, prop: PropertyName, value: any ): void; // tslint:disable-line: max-line-length
declare function setConfigurableReadOnly( obj: any, prop: PropertyName, value: any ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ type Setter = ( x: any ) => void;
* v = obj.foo;
* // returns 'beep foo'
*/
declare function setConfigurableReadWriteAccessor( obj: any, prop: PropertyName, getter: Getter, setter: Setter ): void; // tslint:disable-line: max-line-length
declare function setConfigurableReadWriteAccessor( obj: any, prop: PropertyName, getter: Getter, setter: Setter ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Setter = ( x: any ) => void;
*
* obj.foo = 'beep';
*/
declare function setConfigurableWriteOnlyAccessor( obj: any, prop: PropertyName, setter: Setter ): void; // tslint:disable-line: max-line-length
declare function setConfigurableWriteOnlyAccessor( obj: any, prop: PropertyName, setter: Setter ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Getter = () => any;
* var v = obj.foo;
* // returns 'bar'
*/
declare function setMemoizedConfigurableReadOnly( obj: any, prop: PropertyName, fcn: Getter ): void; // tslint:disable-line: max-line-length
declare function setMemoizedConfigurableReadOnly( obj: any, prop: PropertyName, fcn: Getter ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion define-memoized-property/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ interface PropertyDescriptor extends DataPropertyDescriptor {
* var v = obj.foo;
* // returns 'bar'
*/
declare function defineMemoizedProperty( obj: any, prop: PropertyName, desc: PropertyDescriptor ): void; // tslint:disable-line: max-line-length
declare function defineMemoizedProperty( obj: any, prop: PropertyName, desc: PropertyDescriptor ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion define-memoized-read-only-property/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Getter = () => any;
* var v = obj.foo;
* // returns 'bar'
*/
declare function setMemoizedReadOnly( obj: any, prop: PropertyName, fcn: Getter ): void; // tslint:disable-line: max-line-length
declare function setMemoizedReadOnly( obj: any, prop: PropertyName, fcn: Getter ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-property/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import { PropertyName } from '@stdlib/types/object';
* var keys = objectKeys( obj );
* // returns []
*/
declare function setNonEnumerableProperty( obj: any, prop: PropertyName, value: any ): void; // tslint:disable-line: max-line-length
declare function setNonEnumerableProperty( obj: any, prop: PropertyName, value: any ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Getter = () => any;
* console.error( err.message );
* }
*/
declare function setNonEnumerableReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void; // tslint:disable-line: max-line-length
declare function setNonEnumerableReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { PropertyName } from '@stdlib/types/object';
* console.error( err.message );
* }
*/
declare function setNonEnumerableReadOnly( obj: any, prop: PropertyName, value: any ): void; // tslint:disable-line: max-line-length
declare function setNonEnumerableReadOnly( obj: any, prop: PropertyName, value: any ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ type Setter = ( x: any ) => void;
* v = obj.foo;
* // returns 'beep foo'
*/
declare function setNonEnumerableReadWriteAccessor( obj: any, prop: PropertyName, getter: Getter, setter: Setter ): void; // tslint:disable-line: max-line-length
declare function setNonEnumerableReadWriteAccessor( obj: any, prop: PropertyName, getter: Getter, setter: Setter ): void;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Setter = ( x: any ) => void;
*
* obj.foo = 'beep';
*/
declare function setNonEnumerableWriteOnlyAccessor( obj: any, prop: PropertyName, setter: Setter ): void; // tslint:disable-line: max-line-length
declare function setNonEnumerableWriteOnlyAccessor( obj: any, prop: PropertyName, setter: Setter ): void;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion define-property/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { PropertyName, PropertyDescriptor } from '@stdlib/types/object';
* var str = obj.foo;
* // returns 'bar'
*/
declare function defineProperty( obj: any, prop: PropertyName, descriptor: PropertyDescriptor ): any; // tslint:disable-line: max-line-length
declare function defineProperty( obj: any, prop: PropertyName, descriptor: PropertyDescriptor ): any;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion define-read-only-accessor/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Getter = () => any;
* console.error( err.message );
* }
*/
declare function setReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void; // tslint:disable-line: max-line-length
declare function setReadOnlyAccessor( obj: any, prop: PropertyName, getter: Getter ): void;


// EXPORTS //
Expand Down
Loading

0 comments on commit debe7f8

Please sign in to comment.