Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface LoDashWrapper<TValue, TValue, TValue, TValue, TValue, TValue, TValue>

Type parameters

  • TValue

  • TValue

  • TValue

  • TValue

  • TValue

  • TValue

  • TValue

Hierarchy

  • LoDashWrapper

Index

Methods

commit

  • commit(): this
  • Executes the chained sequence and returns the wrapped result.

    Returns this

    Returns the new lodash wrapper instance.

reverse

  • reverse(): this
  • Reverses the wrapped array so the first element becomes the last, the second element becomes the second to last, and so on.

    Note: This method mutates the wrapped array.

    Returns this

    Returns the new reversed lodash wrapper instance.

tap

  • tap(interceptor: function): this
  • see

    _.tap

    Parameters

    • interceptor: function
        • (value: TValue): void
        • Parameters

          • value: TValue

          Returns void

    Returns this

toJSON

  • toJSON(): TValue
  • see

    _.value

    Returns TValue

toString

  • toString(): string
  • Produces the result of coercing the unwrapped value to a string.

    Returns string

    Returns the coerced string value.

value

  • value(): TValue
  • Executes the chained sequence to extract the unwrapped value.

    alias

    _.toJSON, _.valueOf

    Returns TValue

    Returns the resolved unwrapped value.

valueOf

  • valueOf(): TValue
  • see

    _.value

    Returns TValue

Generated using TypeDoc