Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Function” Methods(“函数”方法)

_.wrap(value, [wrapper=identity])

创建一个函数。提供的 value 包装在 wrapper 函数的第一个参数里。 任何附加的参数都提供给 wrapper 函数。 被调用时 this 绑定在创建的函数上。

添加版本

0.1.0

参数

  1. value (*): 要包装的值。
  2. [wrapper=identity] (Function): 包装函数。

返回

(Function): 返回新的函数。

例子

var p = _.wrap(_.escape, function(func, text) {
  return '

'

 + func(text) + '';
});
 
p('fred, barney, & pebbles');
// => '

fred, barney, & pebbles

'

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods