Checks whether or not an object fulfills a specified condition
npm install fulfills --save
const fulfills = require('fulfills');
const obj = {
property: { subproperty: 'value' }
};
// Performant option – useful if the same condition is used over and over again
const condition = fulfills.compileCondition('property.subproperty = value OR property.subproperty = 123');
if (fulfills(obj, condition)) {
// ...
}
// Short option – useful if a condition will only be used once
if (fulfills(obj, 'property.subproperty = value OR property.subproperty = 123')) {
// ...
}
A condition has the syntax of:
property == value
or just property
The ==
can be any supported comparison operator. If only a property is given then the condition will be true of the property contains a truthy value in the javascript sense.
Multiple conditions can be combined or modified through the use of logical operators and when doing so parantheses can be used to group them together into different groups.
!(bookmark.bar-car.foo["abc adf sdaf sda f"][][][]=123) AND foo OR bar=abc OR foo="\\" OR foo[]=123 OR foo.abc[].bar.foo[] != true
The property can be targeted at subproperties by appending them with a .
before each level, like: property.subproperty.subpropertyOfSubproperty
.
To look for a value in an array rather than compare the value to the array itself, then append []
to the property like: property[]
The array syntax and subproperties can be combined however one likes. For example: property.subproperty[][].propertyOfObjectInATwoLevelDeepArray
Complex property names can be specified like ["very complex property name"]
. Values in such property names can be escaped, like: ["property name including a \"funny\" char"]
- Simple strings – a single word containing just a-z needs no quotes. Example:
foobar
- Quoted stringes – multiple words or complex words needs to be quoted. Example:
"a very long text"
. Supports escaping, like:"This is an escaped \" character"
- Integers – a number containg just
0-9
chars - Booleans – when set to exactly
true
orfalse
All work just like the javascript comparison operators does.
===
==
(alias:=
)!==
!=
(alias:<>
)<
>
<=
>=
OR
(alias:||
)AND
(alias:&&
)NOT
(alias:!
)
Available as part of the Tidelift Subscription.
The maintainers of fulfills and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. Learn more.