_.wrap

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

Creates a function that provides value to wrapper as its first argument. Any additional arguments provided to the function are appended to those provided to the wrapper. The wrapper is invoked with the this binding of the created function.

Since

0.1.0

Arguments

  1. value (*): The value to wrap.
  2. [wrapper=identity] (Function): The wrapper function.

Returns

(Function): Returns the new function.

Example

var p = _.wrap(_.escape, function(func, text) {
  return '<p>' + func(text) + '</p>';
});
 

p('fred, barney, & pebbles');
// => '<p>fred, barney, &ampamp; pebbles</p>'
doc_Lodash
2016-11-27 16:41:55
Comments
Leave a Comment

Please login to continue.