Comparing version 1.0.0 to 1.0.1
@@ -465,3 +465,3 @@ /* | ||
throw (new VError('predicate %j: field "%s" is not a string, ' + | ||
'number, or boolean', pred, key)); | ||
'number, or boolean', pred, field)); | ||
} | ||
@@ -468,0 +468,0 @@ |
{ | ||
"name": "krill", | ||
"description": "simple boolean filter language with support for C, DTrace and LDAP output", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
@@ -19,3 +19,3 @@ /* | ||
mod_assert.throws(function emptyPredToLDAPFilter() { | ||
pred.toLDAPFilterString() | ||
pred.toLDAPFilterString(); | ||
}, /Cannot serialize empty predicate to LDAP search filter/); | ||
@@ -22,0 +22,0 @@ mod_assert.ok(pred.eval({})); |
@@ -39,3 +39,5 @@ /* | ||
[ { 'ge': [ 's', '3' ] }, /cannot be applied to fields of type/, types ], | ||
[ { 'gt': [ 's', '3' ] }, /cannot be applied to fields of type/, types ] | ||
[ { 'gt': [ 's', '3' ] }, /cannot be applied to fields of type/, types ], | ||
[ { 'eq': [ 'foo', null ] }, | ||
/predicate { eq: \[ 'foo', null \] }: field "foo" is not a string, number, or boolean/ ] | ||
/* END JSSTYLED */ | ||
@@ -42,0 +44,0 @@ ]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61543
15
1249