服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.conforms(source)

创建一个函数,该函数source使用给定对象的相应属性值调用谓词属性,true如果所有谓词都返回truthy,则返回else false

注意:所创建的功能相当于_.conformsTosource部分地施加。

以来

4.0.0

参数
  1. source (Object):属性谓词符合的对象。
返回

(功能):返回新的规格功能。

var objects = [
  { 'a': 2, 'b': 1 },

  { 'a': 1, 'b': 2 }
];
 
_.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } }));
// => [{ 'a': 1, 'b': 2 }]