Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom validation callback #3

Open
jhuliano opened this issue Feb 3, 2017 · 0 comments
Open

Custom validation callback #3

jhuliano opened this issue Feb 3, 2017 · 0 comments

Comments

@jhuliano
Copy link

jhuliano commented Feb 3, 2017

Hello,
If found this package pretty useful but the "missing" criteria doesn't match with my needs.
So I would propose (as a new feature) having a custom, optional, callback as the last parameter so the user can modify this at his will.

It could look something like this (3 lines change):

function defaultsDeep(target, objects, isMissing) {
  target = target || {};
  isMissing = isMissing || ((val) => val == null);
  [...]
      if (isMissing(val)) {
        target[key] = value;
      }
  [...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant