NewDash

    Function default

    • Creates a function that invokes func with arguments arranged according to the specified indexes where the argument value at the first index is provided as the first argument, the argument value at the second index is provided as the second argument, and so on.

      Parameters

      • func: Function

        The function to rearrange arguments for.

      • indexes: number[]

        The arranged argument indexes.

      Returns any

      Returns the new function.

      5.5.0

      var rearged = rearg(function(a, b, c) {
      return [a, b, c];
      }, [2, 0, 1]);

      rearged('b', 'c', 'a')
      // => ['a', 'b', 'c']
    • Creates a function that invokes func with arguments arranged according to the specified indexes where the argument value at the first index is provided as the first argument, the argument value at the second index is provided as the second argument, and so on.

      Parameters

      • func: Function

        The function to rearrange arguments for.

      • ...indexes: number[]

        The arranged argument indexes.

      Returns any

      Returns the new function.

      5.5.0

      var rearged = rearg(function(a, b, c) {
      return [a, b, c];
      }, [2, 0, 1]);

      rearged('b', 'c', 'a')
      // => ['a', 'b', 'c']
    MMNEPVFCICPMFPCPTTAAATR