Lodash教程

Lodash confirmTo method

语法

_.conformsTo(object, source)
Checks if object conforms to source by invoking the predicate properties of source with the corresponding property values of object.

参数

object (Object) − The object to inspect. source (Object) − The object of property predicates to conform to.

输出

(boolean) − Returns true if object conforms, else false.

实例

var _ = require('lodash');
var object = { 'a': 1, 'b': 2 };
 
console.log(_.conformsTo(object, { 'b': function(n) { return n > 1; } }));
console.log(_.conformsTo(object, { 'b': function(n) { return n > 2; } }));
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

true
false
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4