bitbybit.dev v1.0.0-rc.1
    Preparing search index...

    Class ArrayToCsvDto

    Index

    Constructors

    • Parameters

      • Optionalarray: (string | number | boolean)[][]
      • OptionalrowSeparator: string
      • OptionalcolumnSeparator: string

      Returns ArrayToCsvDto

    Properties

    array: (string | number | boolean)[][]

    2D array to convert

    [["name", "age"], ["John", "30"]]
    
    rowSeparator?: string

    Row separator (newline character)

    \n
    
    columnSeparator?: string

    Column separator (delimiter)

    ,