default
default: { GUID: any; UID: any; arrayToObject: any; delay: any; escapeRegExp: any; isArray: any; isAsyncFunction: any; isBoolean: any; isEmptyArray: any; isEmptyObject: any; isFloat: any; isFunction: any; isGUID: any; isGUIDv4: any; isInteger: any; isIterable: any; isJSON: any; isMap: any; isNativeObject: any; isNull: any; isNumber: any; isObject: any; isPositiveInteger: any; isRegExp: any; isSet: any; isString: any; isSymbol: any; isUndefined: any; iterate: any; iterateChunk: any; iterateKeys: any; iterateParallel: any; iterateParallelLimit: any; mapToArray: any; nop: any; nop$: any; objectToArray: any; random: any; setDefaults: any; sortObject: any; toArray: any }
Type declaration
GUID:function
- GUID(mask?: string): string
Parameters
mask: string = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'
Returns string
UID:function
- UID(prefix?: string, mask?: string): string
Parameters
prefix: string = ''
mask: string = 'xxxxxxxxxxxxxxxxxx-xxxxxx'
Returns string
arrayToObject:function
- arrayToObject(value: any[], toKeys?: boolean): {}
Parameters
value: any[]
Optional toKeys: boolean
Returns {}
delay:function
- delay(ms?: number): Promise<void>
Parameters
Returns Promise<void>
escapeRegExp:function
- escapeRegExp(value: string): string
isArray:function
- isArray(value: any): boolean
Parameters
Returns boolean
isAsyncFunction:function
- isAsyncFunction(value: any, asyncPattern?: string): boolean
Parameters
value: any
asyncPattern: string = ''
Returns boolean
isBoolean:function
- isBoolean(value: any): boolean
Parameters
Returns boolean
isEmptyArray:function
- isEmptyArray(value: any): boolean
Parameters
Returns boolean
isEmptyObject:function
- isEmptyObject(value: any): boolean
Parameters
Returns boolean
isFloat:function
- isFloat(value: any): boolean
Parameters
Returns boolean
isFunction:function
- isFunction(value: any): boolean
Parameters
Returns boolean
isGUID:function
- isGUID(value: any): boolean
Parameters
Returns boolean
isGUIDv4:function
- isGUIDv4(value: any): boolean
Parameters
Returns boolean
isInteger:function
- isInteger(value: any): boolean
Parameters
Returns boolean
isIterable:function
- isIterable(value: any): boolean
Parameters
Returns boolean
isJSON:function
- isJSON(value: any): boolean
Parameters
Returns boolean
isMap:function
- isMap(value: any): boolean
Parameters
Returns boolean
isNativeObject:function
- isNativeObject(value: any): boolean
Parameters
Returns boolean
isNull:function
- isNull(value: any): boolean
Parameters
Returns boolean
isNumber:function
- isNumber(value: any): boolean
Parameters
Returns boolean
isObject:function
- isObject(value: any): boolean
Parameters
Returns boolean
isPositiveInteger:function
- isPositiveInteger(value: any): boolean
Parameters
Returns boolean
isRegExp:function
- isRegExp(value: any): boolean
Parameters
Returns boolean
isSet:function
- isSet(value: any): boolean
Parameters
Returns boolean
isString:function
- isString(value: any): boolean
Parameters
Returns boolean
isSymbol:function
- isSymbol(value: any, name?: string | boolean): boolean
Parameters
value: any
name: string | boolean = false
Returns boolean
isUndefined:function
- isUndefined(value: any): boolean
Parameters
Returns boolean
iterate:function
- iterate<ArrayType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterate<ArrayType, CbRetType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterate<ArrayType, CbRetType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterate<ObjectType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>): Promise<void>
- iterate<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterate<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterate(value: number, callback: (row: number, index: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterate<CbRetType>(value: number, callback: (row: number, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterate<CbRetType>(value: number, callback: (row: number, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterate<MapIndexType, MapValueType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>): Promise<void>
- iterate<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterate<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterate<SetValueType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterate<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterate<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterate<ArrayType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => void): void
- iterate<ArrayType, CbRetType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterate<ArrayType, CbRetType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterate<ObjectType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => void): void
- iterate<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterate<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterate(value: number, callback: (row: number, index: number, iteration: IIteration) => void): void
- iterate<CbRetType>(value: number, callback: (row: number, index: number, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterate<CbRetType>(value: number, callback: (row: number, index: number, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterate<MapIndexType, MapValueType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void): void
- iterate<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterate<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterate<SetValueType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => void): void
- iterate<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterate<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
- (row: ArrayType, index: number, iteration: IIteration): Promise<void>
Parameters
row: ArrayType
index: number
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: ArrayType, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: ArrayType
index: number
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: ArrayType, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: ArrayType
index: number
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>
- (row: ObjectType, index: string, iteration: IIteration): Promise<void>
Parameters
row: ObjectType
index: string
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void | CbRetType>
- (row: ObjectType, index: string, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: ObjectType
index: string
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void | CbRetType>
- (row: ObjectType, index: string, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: ObjectType
index: string
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => Promise<void>
- (row: number, index: number, iteration: IIteration): Promise<void>
Parameters
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: number, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: number, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>
- (row: MapValueType, index: MapIndexType, iteration: IIteration): Promise<void>
Parameters
row: MapValueType
index: MapIndexType
Returns Promise<void>
Returns Promise<void>
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void | CbRetType>
- (row: MapValueType, index: MapIndexType, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: MapValueType
index: MapIndexType
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void | CbRetType>
- (row: MapValueType, index: MapIndexType, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: MapValueType
index: MapIndexType
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>
- (row: SetValueType, index: number, iteration: IIteration): Promise<void>
Parameters
row: SetValueType
index: number
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: SetValueType, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: SetValueType
index: number
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void | CbRetType>
- (row: SetValueType, index: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
row: SetValueType
index: number
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => void
- (row: ArrayType, index: number, iteration: IIteration): void
Parameters
row: ArrayType
index: number
Returns void
Returns void
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType
- (row: ArrayType, index: number, iteration: IIteration): void | CbRetType
Parameters
row: ArrayType
index: number
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType
- (row: ArrayType, index: number, iteration: IIteration): void | CbRetType
Parameters
row: ArrayType
index: number
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => void
- (row: ObjectType, index: string, iteration: IIteration): void
Parameters
row: ObjectType
index: string
Returns void
Returns void
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType
- (row: ObjectType, index: string, iteration: IIteration): void | CbRetType
Parameters
row: ObjectType
index: string
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType
- (row: ObjectType, index: string, iteration: IIteration): void | CbRetType
Parameters
row: ObjectType
index: string
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => void
- (row: number, index: number, iteration: IIteration): void
Returns void
Type parameters
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => void | CbRetType
- (row: number, index: number, iteration: IIteration): void | CbRetType
Parameters
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: number
callback: (row: number, index: number, iteration: IIteration) => void | CbRetType
- (row: number, index: number, iteration: IIteration): void | CbRetType
Parameters
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void
- (row: MapValueType, index: MapIndexType, iteration: IIteration): void
Parameters
row: MapValueType
index: MapIndexType
Returns void
Returns void
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void | CbRetType
- (row: MapValueType, index: MapIndexType, iteration: IIteration): void | CbRetType
Parameters
row: MapValueType
index: MapIndexType
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => void | CbRetType
- (row: MapValueType, index: MapIndexType, iteration: IIteration): void | CbRetType
Parameters
row: MapValueType
index: MapIndexType
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => void
- (row: SetValueType, index: number, iteration: IIteration): void
Parameters
row: SetValueType
index: number
Returns void
Returns void
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => void | CbRetType
- (row: SetValueType, index: number, iteration: IIteration): void | CbRetType
Parameters
row: SetValueType
index: number
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => void | CbRetType
- (row: SetValueType, index: number, iteration: IIteration): void | CbRetType
Parameters
row: SetValueType
index: number
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
iterateChunk:function
- iterateChunk<RowType>(size: number, val: Record<RecordIndexes, RowType>, cb: (rows: Record<RecordIndexes, RowType>, iter: IIteration) => void): Promise<void>
- iterateChunk<RowType>(size: number, val: RowType[], cb: (rows: RowType[], idxs: RowType[], iter: IIteration) => void): Promise<void>
Type parameters
Parameters
size: number
val: Record<RecordIndexes, RowType>
cb: (rows: Record<RecordIndexes, RowType>, iter: IIteration) => void
- (rows: Record<RecordIndexes, RowType>, iter: IIteration): void
Parameters
rows: Record<RecordIndexes, RowType>
Returns void
Returns Promise<void>
Type parameters
Parameters
size: number
val: RowType[]
cb: (rows: RowType[], idxs: RowType[], iter: IIteration) => void
- (rows: RowType[], idxs: RowType[], iter: IIteration): void
Parameters
rows: RowType[]
idxs: RowType[]
Returns void
Returns Promise<void>
iterateKeys:function
- iterateKeys<ArrayType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateKeys<ArrayType, CbRetType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterateKeys<ArrayType, CbRetType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterateKeys<ObjectType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateKeys<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterateKeys<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterateKeys(value: number, callback: (index: number, row: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterateKeys<CbRetType>(value: number, callback: (index: number, row: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterateKeys<CbRetType>(value: number, callback: (index: number, row: number, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterateKeys<MapIndexType, MapValueType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateKeys<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterateKeys<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterateKeys<SetValueType>(value: Set<SetValueType>, callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateKeys<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): Promise<CbRetType[]>
- iterateKeys<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void | CbRetType>, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Promise<Record<RecordIndexes, CbRetType>>
- iterateKeys<ArrayType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => void): void
- iterateKeys<ArrayType, CbRetType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterateKeys<ArrayType, CbRetType>(value: ArrayType[], callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterateKeys<ObjectType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => void): void
- iterateKeys<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterateKeys<ObjectType, CbRetType>(value: Record<RecordIndexes, ObjectType>, callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterateKeys(value: number, callback: (index: number, row: number, iteration: IIteration) => void): void
- iterateKeys<CbRetType>(value: number, callback: (index: number, row: number, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterateKeys<CbRetType>(value: number, callback: (index: number, row: number, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterateKeys<MapIndexType, MapValueType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void): void
- iterateKeys<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterateKeys<MapIndexType, MapValueType, CbRetType>(value: Map<MapIndexType, MapValueType>, callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
- iterateKeys<SetValueType>(value: Set<SetValueType>, callback: (index: number, row: SetValueType, iteration: IIteration) => void): void
- iterateKeys<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (index: number, row: SetValueType, iteration: IIteration) => void | CbRetType, accumulate: CbRetType[], assign?: boolean, mapUndefined?: boolean): CbRetType[]
- iterateKeys<SetValueType, CbRetType>(value: Set<SetValueType>, callback: (index: number, ow: SetValueType, iteration: IIteration) => void | CbRetType, accumulate: Record<RecordIndexes, CbRetType>, assign?: boolean, mapUndefined?: boolean): Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void>
- (index: number, row: ArrayType, iteration: IIteration): Promise<void>
Parameters
index: number
row: ArrayType
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: ArrayType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: number
row: ArrayType
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: ArrayType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: number
row: ArrayType
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void>
- (index: string, row: ObjectType, iteration: IIteration): Promise<void>
Parameters
index: string
row: ObjectType
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void | CbRetType>
- (index: string, row: ObjectType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: string
row: ObjectType
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void | CbRetType>
- (index: string, row: ObjectType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: string
row: ObjectType
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => Promise<void>
- (index: number, row: number, iteration: IIteration): Promise<void>
Parameters
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: number, iteration: IIteration): Promise<void | CbRetType>
Parameters
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void>
- (index: MapIndexType, row: MapValueType, iteration: IIteration): Promise<void>
Parameters
index: MapIndexType
row: MapValueType
Returns Promise<void>
Returns Promise<void>
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void | CbRetType>
- (index: MapIndexType, row: MapValueType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: MapIndexType
row: MapValueType
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => Promise<void | CbRetType>
- (index: MapIndexType, row: MapValueType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: MapIndexType
row: MapValueType
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void>
- (index: number, row: SetValueType, iteration: IIteration): Promise<void>
Parameters
index: number
row: SetValueType
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: SetValueType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: number
row: SetValueType
Returns Promise<void | CbRetType>
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<CbRetType[]>
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, row: SetValueType, iteration: IIteration) => Promise<void | CbRetType>
- (index: number, row: SetValueType, iteration: IIteration): Promise<void | CbRetType>
Parameters
index: number
row: SetValueType
Returns Promise<void | CbRetType>
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Promise<Record<RecordIndexes, CbRetType>>
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => void
- (index: number, row: ArrayType, iteration: IIteration): void
Parameters
index: number
row: ArrayType
Returns void
Returns void
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType
- (index: number, row: ArrayType, iteration: IIteration): void | CbRetType
Parameters
index: number
row: ArrayType
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: ArrayType[]
callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType
- (index: number, row: ArrayType, iteration: IIteration): void | CbRetType
Parameters
index: number
row: ArrayType
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => void
- (index: string, row: ObjectType, iteration: IIteration): void
Parameters
index: string
row: ObjectType
Returns void
Returns void
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType
- (index: string, row: ObjectType, iteration: IIteration): void | CbRetType
Parameters
index: string
row: ObjectType
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType
- (index: string, row: ObjectType, iteration: IIteration): void | CbRetType
Parameters
index: string
row: ObjectType
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => void
- (index: number, row: number, iteration: IIteration): void
Returns void
Type parameters
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => void | CbRetType
- (index: number, row: number, iteration: IIteration): void | CbRetType
Parameters
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: number
callback: (index: number, row: number, iteration: IIteration) => void | CbRetType
- (index: number, row: number, iteration: IIteration): void | CbRetType
Parameters
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void
- (index: MapIndexType, row: MapValueType, iteration: IIteration): void
Parameters
index: MapIndexType
row: MapValueType
Returns void
Returns void
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void | CbRetType
- (index: MapIndexType, row: MapValueType, iteration: IIteration): void | CbRetType
Parameters
index: MapIndexType
row: MapValueType
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
MapIndexType
MapValueType
CbRetType
Parameters
value: Map<MapIndexType, MapValueType>
callback: (index: MapIndexType, row: MapValueType, iteration: IIteration) => void | CbRetType
- (index: MapIndexType, row: MapValueType, iteration: IIteration): void | CbRetType
Parameters
index: MapIndexType
row: MapValueType
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, row: SetValueType, iteration: IIteration) => void
- (index: number, row: SetValueType, iteration: IIteration): void
Parameters
index: number
row: SetValueType
Returns void
Returns void
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, row: SetValueType, iteration: IIteration) => void | CbRetType
- (index: number, row: SetValueType, iteration: IIteration): void | CbRetType
Parameters
index: number
row: SetValueType
Returns void | CbRetType
accumulate: CbRetType[]
Optional assign: boolean
Optional mapUndefined: boolean
Returns CbRetType[]
Type parameters
Parameters
value: Set<SetValueType>
callback: (index: number, ow: SetValueType, iteration: IIteration) => void | CbRetType
- (index: number, ow: SetValueType, iteration: IIteration): void | CbRetType
Parameters
index: number
ow: SetValueType
Returns void | CbRetType
accumulate: Record<RecordIndexes, CbRetType>
Optional assign: boolean
Optional mapUndefined: boolean
Returns Record<RecordIndexes, CbRetType>
iterateParallel:function
- iterateParallel<ArrayType>(value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallel<ObjectType>(value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallel<MapIndexType, MapValueType>(value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallel<SetValueType>(value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
Type parameters
Parameters
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
- (row: ArrayType, index: number, iteration: IIteration): Promise<void>
Parameters
row: ArrayType
index: number
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>
- (row: ObjectType, index: string, iteration: IIteration): Promise<void>
Parameters
row: ObjectType
index: string
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>
- (row: MapValueType, index: MapIndexType, iteration: IIteration): Promise<void>
Parameters
row: MapValueType
index: MapIndexType
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>
- (row: SetValueType, index: number, iteration: IIteration): Promise<void>
Parameters
row: SetValueType
index: number
Returns Promise<void>
Returns Promise<void>
iterateParallelLimit:function
- iterateParallelLimit<ArrayType>(limit: number, value: ArrayType[], callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallelLimit<ObjectType>(limit: number, value: Record<RecordIndexes, ObjectType>, callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallelLimit<MapIndexType, MapValueType>(limit: number, value: Map<MapIndexType, MapValueType>, callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>): Promise<void>
- iterateParallelLimit<SetValueType>(limit: number, value: Set<SetValueType>, callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>): Promise<void>
Type parameters
Parameters
limit: number
value: ArrayType[]
callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
- (row: ArrayType, index: number, iteration: IIteration): Promise<void>
Parameters
row: ArrayType
index: number
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
limit: number
value: Record<RecordIndexes, ObjectType>
callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>
- (row: ObjectType, index: string, iteration: IIteration): Promise<void>
Parameters
row: ObjectType
index: string
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
limit: number
value: Map<MapIndexType, MapValueType>
callback: (row: MapValueType, index: MapIndexType, iteration: IIteration) => Promise<void>
- (row: MapValueType, index: MapIndexType, iteration: IIteration): Promise<void>
Parameters
row: MapValueType
index: MapIndexType
Returns Promise<void>
Returns Promise<void>
Type parameters
Parameters
limit: number
value: Set<SetValueType>
callback: (row: SetValueType, index: number, iteration: IIteration) => Promise<void>
- (row: SetValueType, index: number, iteration: IIteration): Promise<void>
Parameters
row: SetValueType
index: number
Returns Promise<void>
Returns Promise<void>
mapToArray:function
- mapToArray<T, K>(value: Map<T, K>): [T, K][]
Type parameters
Parameters
Returns [T, K][]
nop:function
nop$:function
objectToArray:function
- objectToArray(value: object, toKeys?: boolean): any[]
Parameters
value: object
Optional toKeys: boolean
Returns any[]
random:function
setDefaults:function
- setDefaults(obj: {}, name: string | number, value?: any): object
Parameters
obj: {}
name: string | number
Optional value: any
Returns object
sortObject:function
- sortObject<T>(target: T, onlyNumIdx?: boolean): T
Type parameters
Parameters
target: T
onlyNumIdx: boolean = false
Returns T
toArray:function
- toArray<T>(value: T | T[]): T[]
Type parameters
Parameters
Returns T[]
Generate GUIDv4 string
Usage