Options
All
  • Public
  • Public/Protected
  • All
Menu

@osmium/tools

Index

References

Re-exports iterate
Re-exports iterateChunk
Re-exports iterateKeys
Re-exports iterateParallel
Re-exports iterateParallelLimit

Variables

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
    • Generate GUIDv4 string

      Usage

      const {GUID} = require('@osmium/tools');
      console.log(GUID()); // 458aed41-197b-4d87-9889-bf92ddf1a3c5

      Parameters

      • mask: string = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'

      Returns string

      GUIDv4 string

  • UID:function
    • UID(prefix?: string, mask?: string): string
    • Generate 128bit unique id

      Parameters

      • prefix: string = ''
      • mask: string = 'xxxxxxxxxxxxxxxxxx-xxxxxx'

      Returns string

  • arrayToObject:function
    • arrayToObject(value: any[], toKeys?: boolean): {}
    • Parameters

      • value: any[]
      • Optional toKeys: boolean

      Returns {}

      • [key: string]: any
  • delay:function
    • delay(ms?: number): Promise<void>
    • Waits for ms via async/await

      Parameters

      • Optional ms: number

        time to wait or 100

      Returns Promise<void>

  • escapeRegExp:function
    • escapeRegExp(value: string): string
    • Escapes all special RegExp characters

      Parameters

      • value: string

      Returns string

  • isArray:function
    • isArray(value: any): boolean
  • isAsyncFunction:function
    • isAsyncFunction(value: any, asyncPattern?: string): boolean
    • Is value an AsyncFunction

      Parameters

      • value: any
      • asyncPattern: string = ''

      Returns boolean

  • isBoolean:function
    • isBoolean(value: any): boolean
  • isEmptyArray:function
    • isEmptyArray(value: any): boolean
    • Is value an Array with length == 0

      Parameters

      • value: any

      Returns boolean

  • isEmptyObject:function
    • isEmptyObject(value: any): boolean
    • Is value an object and without keys

      Parameters

      • value: any

      Returns boolean

  • isFloat:function
    • isFloat(value: any): boolean
  • isFunction:function
    • isFunction(value: any): boolean
  • isGUID:function
    • isGUID(value: any): boolean
    • Is value a valid GUID string

      Parameters

      • value: any

      Returns boolean

  • isGUIDv4:function
    • isGUIDv4(value: any): boolean
    • Is value a valid GUIDv4 string

      Parameters

      • value: any

      Returns boolean

  • isInteger:function
    • isInteger(value: any): boolean
    • Is value an Integer number

      Parameters

      • value: any

      Returns boolean

  • isIterable:function
    • isIterable(value: any): boolean
    • Is value iterable (object or Array with not zero length)

      Parameters

      • value: any

      Returns boolean

  • isJSON:function
    • isJSON(value: any): boolean
    • Is value a JSON and can be decoded as object

      Parameters

      • value: any

      Returns boolean

  • isMap:function
    • isMap(value: any): boolean
  • isNativeObject:function
    • isNativeObject(value: any): boolean
    • Is value a Native Object

      Parameters

      • value: any

      Returns boolean

  • isNull:function
    • isNull(value: any): boolean
  • isNumber:function
    • isNumber(value: any): boolean
  • isObject:function
    • isObject(value: any): boolean
  • isPositiveInteger:function
    • isPositiveInteger(value: any): boolean
    • Check if value is positive or zero

      Usage

      const {isPositiveInteger} = require('@osmium/tools');
      console.log(isPositiveInteger(213)); // true
      console.log(isPositiveInteger(0)); // true
      console.log(isPositiveInteger(-12312)); // false

      Parameters

      • value: any

      Returns boolean

  • isRegExp:function
    • isRegExp(value: any): boolean
  • isSet:function
    • isSet(value: any): boolean
  • isString:function
    • isString(value: any): boolean
  • isSymbol:function
    • isSymbol(value: any, name?: string | boolean): boolean
    • Is value symbol

      Parameters

      • value: any
      • name: string | boolean = false

      Returns boolean

  • isUndefined:function
    • isUndefined(value: any): boolean
    • Is value an undefined

      Parameters

      • value: any

      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>
    • Iterates through an Object Array or number

      Example

      const {iterate, delay} = require('@osmium/tools');

      let dt = {x: 10, y: 20};
      iterate(dt, (value, key) => {
      console.log(value, key) // 10 'x' ... 20 'y'
      })
      iterate([1, 2, 3], async (value, index) => {
      await delay(100);
      console.log(value, index); // 1 0 ... 2 1 ... 3 2
      })

      Values, returned in callbacks can be accumulated

      Example

      const {iterate, delay} = require('@osmium/tools');
      let arr = iterate({x: 10, y: 20}, (val) => {
      return val * 2;
      }, []);
      console.log(arr) // [20, 40]

      Type parameters

      • ArrayType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
          • (row: ArrayType, index: number, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>
          • (row: ArrayType, 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

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void | CbRetType>
          • (row: ArrayType, 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

      • ObjectType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>
          • (row: ObjectType, index: string, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ObjectType

      • CbRetType

      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

            Returns Promise<void | CbRetType>

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<CbRetType[]>

    • Type parameters

      • ObjectType

      • CbRetType

      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

            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

      • CbRetType

      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

      • CbRetType

      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

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            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
            • iteration: IIteration

            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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<Record<RecordIndexes, CbRetType>>

    • Type parameters

      • SetValueType

      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
            • iteration: IIteration

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<CbRetType[]>

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<Record<RecordIndexes, CbRetType>>

    • Type parameters

      • ArrayType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => void
          • (row: ArrayType, index: number, iteration: IIteration): void
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType
          • (row: ArrayType, index: number, iteration: IIteration): void | CbRetType
          • Parameters

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => void | CbRetType
          • (row: ArrayType, 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

      • ObjectType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (row: ObjectType, index: string, iteration: IIteration) => void
          • (row: ObjectType, index: string, iteration: IIteration): void
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • ObjectType

      • CbRetType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType
          • (row: ObjectType, index: string, iteration: IIteration): void | CbRetType
          • Parameters

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • ObjectType

      • CbRetType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (row: ObjectType, index: string, iteration: IIteration) => void | CbRetType
          • (row: ObjectType, index: string, iteration: IIteration): void | CbRetType
          • Parameters

            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
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • CbRetType

      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

      • CbRetType

      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

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            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
            • iteration: IIteration

            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
            • iteration: IIteration

            Returns void | CbRetType

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Record<RecordIndexes, CbRetType>

    • Type parameters

      • SetValueType

      Parameters

      • value: Set<SetValueType>
      • callback: (row: SetValueType, index: number, iteration: IIteration) => void
          • (row: SetValueType, index: number, iteration: IIteration): void
          • Parameters

            • row: SetValueType
            • index: number
            • iteration: IIteration

            Returns void

      Returns void

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            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

      • RowType

      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>
            • iter: IIteration

            Returns void

      Returns Promise<void>

    • Type parameters

      • RowType

      Parameters

      • size: number
      • val: RowType[]
      • cb: (rows: RowType[], idxs: RowType[], iter: IIteration) => void
          • (rows: RowType[], idxs: RowType[], iter: IIteration): void
          • Parameters

            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>
    • Same as iterate but swap value and key places

      Type parameters

      • ArrayType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void>
          • (index: number, row: ArrayType, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>
          • (index: number, row: ArrayType, iteration: IIteration): Promise<void | CbRetType>
          • Parameters

            Returns Promise<void | CbRetType>

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<CbRetType[]>

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => Promise<void | CbRetType>
          • (index: number, row: ArrayType, 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

      • ObjectType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (index: string, row: ObjectType, iteration: IIteration) => Promise<void>
          • (index: string, row: ObjectType, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ObjectType

      • CbRetType

      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

            Returns Promise<void | CbRetType>

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<CbRetType[]>

    • Type parameters

      • ObjectType

      • CbRetType

      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

            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

      • CbRetType

      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

      • CbRetType

      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

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            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
            • iteration: IIteration

            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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<Record<RecordIndexes, CbRetType>>

    • Type parameters

      • SetValueType

      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
            • iteration: IIteration

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<CbRetType[]>

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns Promise<void | CbRetType>

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Promise<Record<RecordIndexes, CbRetType>>

    • Type parameters

      • ArrayType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => void
          • (index: number, row: ArrayType, iteration: IIteration): void
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType
          • (index: number, row: ArrayType, iteration: IIteration): void | CbRetType
          • Parameters

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • ArrayType

      • CbRetType

      Parameters

      • value: ArrayType[]
      • callback: (index: number, row: ArrayType, iteration: IIteration) => void | CbRetType
          • (index: number, row: ArrayType, iteration: IIteration): void | CbRetType
          • Parameters

            Returns void | CbRetType

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Record<RecordIndexes, CbRetType>

    • Type parameters

      • ObjectType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (index: string, row: ObjectType, iteration: IIteration) => void
          • (index: string, row: ObjectType, iteration: IIteration): void
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • ObjectType

      • CbRetType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType
          • (index: string, row: ObjectType, iteration: IIteration): void | CbRetType
          • Parameters

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • ObjectType

      • CbRetType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (index: string, row: ObjectType, iteration: IIteration) => void | CbRetType
          • (index: string, row: ObjectType, iteration: IIteration): void | CbRetType
          • Parameters

            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
          • Parameters

            Returns void

      Returns void

    • Type parameters

      • CbRetType

      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

      • CbRetType

      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

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            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
            • iteration: IIteration

            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
            • iteration: IIteration

            Returns void | CbRetType

      • accumulate: Record<RecordIndexes, CbRetType>
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns Record<RecordIndexes, CbRetType>

    • Type parameters

      • SetValueType

      Parameters

      • value: Set<SetValueType>
      • callback: (index: number, row: SetValueType, iteration: IIteration) => void
          • (index: number, row: SetValueType, iteration: IIteration): void
          • Parameters

            • index: number
            • row: SetValueType
            • iteration: IIteration

            Returns void

      Returns void

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            Returns void | CbRetType

      • accumulate: CbRetType[]
      • Optional assign: boolean
      • Optional mapUndefined: boolean

      Returns CbRetType[]

    • Type parameters

      • SetValueType

      • CbRetType

      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
            • iteration: IIteration

            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>
    • Same as iterate, but all async functions go in parallel

      Type parameters

      • ArrayType

      Parameters

      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
          • (row: ArrayType, index: number, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ObjectType

      Parameters

      • value: Record<RecordIndexes, ObjectType>
      • callback: (row: ObjectType, index: string, iteration: IIteration) => Promise<void>
          • (row: ObjectType, index: string, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • SetValueType

      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
            • iteration: IIteration

            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

      • ArrayType

      Parameters

      • limit: number
      • value: ArrayType[]
      • callback: (row: ArrayType, index: number, iteration: IIteration) => Promise<void>
          • (row: ArrayType, index: number, iteration: IIteration): Promise<void>
          • Parameters

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • ObjectType

      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

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • MapIndexType

      • MapValueType

      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
            • iteration: IIteration

            Returns Promise<void>

      Returns Promise<void>

    • Type parameters

      • SetValueType

      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
            • iteration: IIteration

            Returns Promise<void>

      Returns Promise<void>

  • mapToArray:function
    • mapToArray<T, K>(value: Map<T, K>): [T, K][]
    • Type parameters

      • T = any

      • K = any

      Parameters

      • value: Map<T, K>

      Returns [T, K][]

  • nop:function
    • nop(): void
    • Sync void empty function (No Operation)

      Returns void

  • nop$:function
    • nop$(): Promise<void>
    • Async void empty function (No Operation Async)

      Returns Promise<void>

  • objectToArray:function
    • objectToArray(value: object, toKeys?: boolean): any[]
    • Parameters

      • value: object
      • Optional toKeys: boolean

      Returns any[]

  • random:function
    • random(): number
  • setDefaults:function
    • setDefaults(obj: {}, name: string | number, value?: any): object
    • Sets value if it is not defined

      const {setDefaults} = require('@osmium/tools');
      const params = {x: 10};
      setDefaults(params, 'x', 24);
      console.log(params); // {x: 10}
      setDefaults(params, 'y', 12);
      console.log(params); // {x: 10, y: 12}

      Parameters

      • obj: {}
        • [key: string]: any
      • name: string | number
      • Optional value: any

      Returns object

  • sortObject:function
    • sortObject<T>(target: T, onlyNumIdx?: boolean): T
    • Type parameters

      • T: {} = {}

      Parameters

      • target: T
      • onlyNumIdx: boolean = false

      Returns T

  • toArray:function
    • toArray<T>(value: T | T[]): T[]
    • Type parameters

      • T = any

      Parameters

      • value: T | T[]

      Returns T[]

Functions

  • GUID(mask?: string): string
  • Generate GUIDv4 string

    Usage

    const {GUID} = require('@osmium/tools');
    console.log(GUID()); // 458aed41-197b-4d87-9889-bf92ddf1a3c5

    Parameters

    • mask: string = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'

    Returns string

    GUIDv4 string

  • UID(prefix?: string, mask?: string): string
  • Generate 128bit unique id

    Parameters

    • prefix: string = ''
    • mask: string = 'xxxxxxxxxxxxxxxxxx-xxxxxx'

    Returns string

  • arrayToObject(value: any[], toKeys?: boolean): {}
  • Parameters

    • value: any[]
    • Optional toKeys: boolean

    Returns {}

    • [key: string]: any
  • delay(ms?: number): Promise<void>
  • Waits for ms via async/await

    Parameters

    • Optional ms: number

      time to wait or 100

    Returns Promise<void>

  • escapeRegExp(value: string): string
  • Escapes all special RegExp characters

    Parameters

    • value: string

    Returns string

  • isArray(value: any): boolean
  • isAsyncFunction(value: any, asyncPattern?: string): boolean
  • Is value an AsyncFunction

    Parameters

    • value: any
    • asyncPattern: string = ''

    Returns boolean

  • isBoolean(value: any): boolean
  • isEmptyArray(value: any): boolean
  • Is value an Array with length == 0

    Parameters

    • value: any

    Returns boolean

  • isEmptyObject(value: any): boolean
  • Is value an object and without keys

    Parameters

    • value: any

    Returns boolean

  • isFloat(value: any): boolean
  • isFunction(value: any): boolean
  • isGUID(value: any): boolean
  • Is value a valid GUID string

    Parameters

    • value: any

    Returns boolean

  • isGUIDv4(value: any): boolean
  • Is value a valid GUIDv4 string

    Parameters

    • value: any

    Returns boolean

  • isInteger(value: any): boolean
  • Is value an Integer number

    Parameters

    • value: any

    Returns boolean

  • isIterable(value: any): boolean
  • Is value iterable (object or Array with not zero length)

    Parameters

    • value: any

    Returns boolean

  • isJSON(value: any): boolean
  • Is value a JSON and can be decoded as object

    Parameters

    • value: any

    Returns boolean

  • isMap(value: any): boolean
  • isNativeObject(value: any): boolean
  • Is value a Native Object

    Parameters

    • value: any

    Returns boolean

  • isNull(value: any): boolean
  • isNumber(value: any): boolean
  • isObject(value: any): boolean
  • isPositiveInteger(value: any): boolean
  • Check if value is positive or zero

    Usage

    const {isPositiveInteger} = require('@osmium/tools');
    console.log(isPositiveInteger(213)); // true
    console.log(isPositiveInteger(0)); // true
    console.log(isPositiveInteger(-12312)); // false

    Parameters

    • value: any

    Returns boolean

  • isRegExp(value: any): boolean
  • isSet(value: any): boolean
  • isString(value: any): boolean
  • isSymbol(value: any, name?: string | boolean): boolean
  • Is value symbol

    Parameters

    • value: any
    • name: string | boolean = false

    Returns boolean

  • isUndefined(value: any): boolean
  • Is value an undefined

    Parameters

    • value: any

    Returns boolean

  • mapToArray<T, K>(value: Map<T, K>): [T, K][]
  • Type parameters

    • T = any

    • K = any

    Parameters

    • value: Map<T, K>

    Returns [T, K][]

  • nop(): void
  • Sync void empty function (No Operation)

    Returns void

  • nop$(): Promise<void>
  • Async void empty function (No Operation Async)

    Returns Promise<void>

  • objectToArray(value: object, toKeys?: boolean): any[]
  • Parameters

    • value: object
    • Optional toKeys: boolean

    Returns any[]

  • random(): number
  • setDefaults(obj: {}, name: string | number, value?: any): object
  • Sets value if it is not defined

    const {setDefaults} = require('@osmium/tools');
    const params = {x: 10};
    setDefaults(params, 'x', 24);
    console.log(params); // {x: 10}
    setDefaults(params, 'y', 12);
    console.log(params); // {x: 10, y: 12}

    Parameters

    • obj: {}
      • [key: string]: any
    • name: string | number
    • Optional value: any

    Returns object

  • sortObject<T>(target: T, onlyNumIdx?: boolean): T
  • Type parameters

    • T: {} = {}

    Parameters

    • target: T
    • onlyNumIdx: boolean = false

    Returns T

  • toArray<T>(value: T | T[]): T[]
  • Type parameters

    • T = any

    Parameters

    • value: T | T[]

    Returns T[]

Generated using TypeDoc