Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "utils/array/array.utils"

Index

Functions

getArray

  • getArray(objs: any): any[]
  • Convert the input to an array.

    If the input is a single object, it will be added to an array and returned.

    Parameters

    • objs: any

    Returns any[]

getArrayOfBooleans

  • getArrayOfBooleans(objs: any): boolean[]
  • Convert the input to an array of booleans.

    If the input is a single object, it will be added to an array and returned.

    Parameters

    • objs: any

    Returns boolean[]

getArrayOfModels

  • getArrayOfModels(clazz: any, objs: any): any[]
  • Convert the input to an array of instances of the given class.

    If the input is a single object, it will be added to an array and returned.

    Parameters

    • clazz: any
    • objs: any

    Returns any[]

getArrayOfNumbers

  • getArrayOfNumbers(objs: any): number[]
  • Convert the input to an array of numbers.

    If the input is a single object, it will be added to an array and returned.

    Parameters

    • objs: any

    Returns number[]

getArrayOfStrings

  • getArrayOfStrings(objs: any): string[]
  • Convert the input to an array of strings.

    If the input is a single object, it will be added to an array and returned.

    Parameters

    • objs: any

    Returns string[]

isArray

  • isArray(obj: any): boolean

Generated using TypeDoc