We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Thanks for the library. It would be great if it provided an hasByPath() method to check the path's availability.
hasByPath()
Thanks,
The text was updated successfully, but these errors were encountered:
@ozum hi, thanks for feedback :) Maybe I misunderstood, but why can't you use like this? const hasValue = getByPath(obj, 'a.b.c') !== undefined
const hasValue = getByPath(obj, 'a.b.c') !== undefined
Sorry, something went wrong.
Hi @g-makarov,
Below is an example for a use case:
const a = { name: "Jane" surname: undefined } const hasValue = getByPath(a, 'surname') !== undefined; // false const hasValue = hasByPath(a, 'surname'); // true
No branches or pull requests
Hi,
Thanks for the library. It would be great if it provided an
hasByPath()
method to check the path's availability.Thanks,
The text was updated successfully, but these errors were encountered: