Lodash _.rearg

2021-09-22 10:06 更新

_.rearg(func, indexes)

創(chuàng)建一個函數(shù),調(diào)用func時,根據(jù)指定的 indexes 調(diào)整對應位置參數(shù)。其中第一個索引值是對應第一個參數(shù),第二個索引值是作為第二個參數(shù),依此類推。

添加版本

3.0.0

參數(shù)

  1. func (Function): 待調(diào)用的函數(shù)。
  2. indexes (...(number|number[])): 排列參數(shù)的位置。

返回

(Function): 返回新的函數(shù)。

例子

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


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號