Skip to content

Commit

Permalink
doc: add missing Value::IsBigInt (#1319)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinEady committed May 29, 2023
1 parent 358b2d3 commit 665f4aa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/value.md
Expand Up @@ -141,6 +141,13 @@ bool Napi::Value::IsArrayBuffer() const;
Returns `true` if the underlying value is a JavaScript `Napi::ArrayBuffer` or
`false` otherwise.

```cpp
bool Napi::Value::IsBigInt() const;
```

Returns `true` if the underlying value is a JavaScript `Napi::BigInt` or `false`
otherwise.

### IsBoolean

```cpp
Expand Down

0 comments on commit 665f4aa

Please sign in to comment.