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

doc: sync Object::Set value arg with Value::From #933

Merged
merged 1 commit into from
Mar 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions doc/object.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,7 @@ The key can be any of the following types:
- `const std::string&`
- `uint32_t`

While the value must be any of the following types:
- `napi_value`
- [`Napi::Value`](value.md)
- `const char*`
- `std::string&`
- `bool`
- `double`
The `value` can be of any type that is accepted by [`Napi::Value::From`][].

### Delete()

Expand Down Expand Up @@ -271,3 +265,4 @@ Napi::Value Napi::Object::operator[] (uint32_t index) const;
Returns an indexed property or array element as a [`Napi::Value`](value.md).

[`Napi::Value`]: ./value.md
[`Napi::Value::From`]: ./value.md#from