Function conforms

  • Creates a function that invokes the predicate properties of source with the corresponding property values of a given object, returning true if all predicates return truthy, else false.

    Note: The created function is equivalent to conformsTo with source partially applied.

    Type Parameters

    • T extends Record<string, any>

    Parameters

    • source: { [key in string | number | symbol]?: (value: any) => boolean }

      The object of property predicates to conform to.

    Returns (obj: T) => boolean

    Returns the new spec function.

    5.12.0

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

    filter(objects, conforms({ 'b': function(n) { return n > 1 } }))
    // => [{ 'a': 1, 'b': 2 }]
  • Creates a function that invokes the predicate properties of source with the corresponding property values of a given object, returning true if all predicates return truthy, else false.

    Note: The created function is equivalent to conformsTo with source partially applied.

    Parameters

    • source: any

      The object of property predicates to conform to.

    Returns any

    Returns the new spec function.

    5.12.0

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

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