Lodash - constant 方法
语法
_.constant(value)
创建返回 value 的函数。
参数
value (*) - 要从新函数返回的值。
输出
(函数) - 返回新的常量函数。
示例
var _ = require('lodash'); var check = _.cond([ [_.matches({ 'a': 1 }), _.constant('matches A')], [_.conforms({ 'b': _.isNumber }), _.constant('matches B')], [_.stubTrue, _.constant('no match')] ]); console.log(check({ 'a': 1, 'b': 2 })); console.log(check({ 'a': 0, 'b': 1 })); console.log(check({ 'a': '1', 'b': '2' }));
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
matches A matches B no match
lodash_util.htm
广告