Lodash教程

Lodash wrap method

语法

_.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.

参数

value (*) − The value to wrap. [wrapper=identity] (Function) − The wrapper function.

输出

(Function) − Returns the new function.

实例

var _ = require('lodash');
var p = _.wrap(_.escape, function(func, text) {
   return '<p>' + func(text) + '</p>';
});
 
console.log(p('Joe, Julie, & Sam'));
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

   
"desc">Joe, Julie, & Sam
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4