Lodash _.overArgs

2021-09-24 10:14 更新

_.overArgs(func, [transforms=[_.identity]])

創(chuàng)建一個函數(shù),調(diào)用func時參數(shù)為相對應的transforms的返回值。

添加版本

4.0.0

參數(shù)

  1. func (Function):要包裹的函數(shù)。

返回

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

例子

function doubled(n) 
{  return n * 2;} function square(n) {  return n * n;}
 var func = _.overArgs(function(x, y) {  return [x, y];}, [square, doubled]); 
func(9, 3);// => [81, 6] func(10, 5);
// => [100, 10]


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號