nettofarah / property-validator

:white_check_mark: Easy property validation for JavaScript, Node and Express.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

presence validation not taking into account falsy values

bjrmatos opened this issue · comments

if you have an object like this:

params = {
  foo: 0,
  bar: false,
  baz: ''
};

the presence validation fails

Great catch!
Your PR is looking really good.