this PR add not modifier to all predicates and should fix #148
// Chain from any predicate instance
ow('2', ow.any(ow.not.number, ow.not.string.numeric))
// Chain from any predicate rule(because it the same predicate instance)
ow(undefined, ow.not.undefined)
Hi guys,
this PR add
not
modifier to all predicates and should fix #148