1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
|
# Value
`Napi::Value` is the C++ manifestation of a JavaScript value. It is the base
class upon which other JavaScript values such as `Napi::Number`,
`Napi::Boolean`, `Napi::String`, and `Napi::Object` are based. It represents a
JavaScript value of an unknown type. It is a thin wrapper around the Node-API
datatype `napi_value`. Methods on this class can be used to check the JavaScript
type of the underlying Node-API `napi_value` and also to convert to C++ types.
## Constructors
### Empty Constructor
```cpp
Napi::Value::Value();
```
Creates a new *empty* `Napi::Value` instance.
### Constructor
```cpp
Napi::Value::Value(napi_env env, napi_value value);
```
- `[in] env`: The `napi_env` environment in which to construct the `Napi::Value`
object.
- `[in] value`: The C++ primitive from which to instantiate the `Napi::Value`.
value` may be any of:
- `bool`
- Any integer type
- Any floating point type
- `const char*` (encoded using UTF-8, null-terminated)
- `const char16_t*` (encoded using UTF-16-LE, null-terminated)
- `std::string` (encoded using UTF-8)
- `std::u16string`
- `Napi::Value`
- `napi_value`
## Operators
### operator napi_value
```cpp
Napi::Value::operator napi_value() const;
```
Returns the underlying Node-API `napi_value`. If the instance is _empty_, this
returns `nullptr`.
### operator ==
```cpp
bool Napi::Value::operator ==(const Napi::Value& other) const;
```
Returns `true` if this value strictly equals another value, or `false`
otherwise.
### operator !=
```cpp
bool Napi::Value::operator !=(const Napi::Value& other) const;
```
Returns `false` if this value strictly equals another value, or `true`
otherwise.
## Methods
### As
```cpp
template <typename T> T Napi::Value::As() const;
```
Casts to another type of `Napi::Value`, when the actual type is known or
assumed.
This conversion does not coerce the type. Calling any methods inappropriate for
the actual value type will throw `Napi::Error`. When C++ exceptions are
disabled, the thrown error will not be reflected before control returns to
JavaScript.
In order to enforce expected type, use `Napi::Value::Is*()` methods to check
the type before calling `Napi::Value::As()`, or compile with definition
`NODE_ADDON_API_ENABLE_TYPE_CHECK_ON_AS` to enforce type checks.
### UnsafeAs
```cpp
template <typename T> T Napi::Value::UnsafeAs() const;
```
Casts to another type of `Napi::Value`, when the actual type is known or
assumed.
This conversion does not coerce the type. This does not check the type even if
`NODE_ADDON_API_ENABLE_TYPE_CHECK_ON_AS` is defined. This indicates intentional
unsafe type cast. Use `Napi::Value::As()` if possible.
### Env
```cpp
Napi::Env Napi::Value::Env() const;
```
Returns the `Napi::Env` environment this value is associated with. See
[`Napi::Env`](env.md) for more details about environments.
### From
```cpp
template <typename T>
static Napi::Value Napi::Value::From(napi_env env, const T& value);
```
- `[in] env`: The `napi_env` environment in which to create the `Napi::Value`
object.
- `[in] value`: The Node-API primitive value from which to create the `Napi::Value`
object.
Returns a `Napi::Value` object from an Node-API primitive value.
This method is used to convert from a C++ type to a JavaScript value.
Here, `value` may be any of:
- `bool` - returns a `Napi::Boolean`.
- Any integer type - returns a `Napi::Number`.
- Any floating point type - returns a `Napi::Number`.
- `const char*` (encoded using UTF-8, null-terminated) - returns a
`Napi::String`.
- `const char16_t*` (encoded using UTF-16-LE, null-terminated) - returns a
`Napi::String`.
- `std::string` (encoded using UTF-8) - returns a `Napi::String`.
- `std::u16string` - returns a `Napi::String`.
- `Napi::Value` - returns a `Napi::Value`.
- `Napi_value` - returns a `Napi::Value`.
### IsArray
```cpp
bool Napi::Value::IsArray() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Array` or `false`
otherwise.
### IsArrayBuffer
```cpp
bool Napi::Value::IsArrayBuffer() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::ArrayBuffer` or
`false` otherwise.
### IsBigInt
```cpp
bool Napi::Value::IsBigInt() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::BigInt` or `false`
otherwise.
### IsBoolean
```cpp
bool Napi::Value::IsBoolean() const;
```
Returns `true` if the underlying value is a JavaScript `true` or JavaScript
`false`, or `false` if the value is not a `Napi::Boolean` value in JavaScript.
### IsBuffer
```cpp
bool Napi::Value::IsBuffer() const;
```
Returns `true` if the underlying value is a Node.js `Napi::Buffer` or `false`
otherwise.
### IsDataView
```cpp
bool Napi::Value::IsDataView() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::DataView` or
`false` otherwise.
### IsDate
```cpp
bool Napi::Value::IsDate() const;
```
Returns `true` if the underlying value is a JavaScript `Date` or `false`
otherwise.
### IsEmpty
```cpp
bool Napi::Value::IsEmpty() const;
```
Returns `true` if the value is uninitialized.
An empty `Napi::Value` is invalid, and most attempts to perform an operation on
an empty `Napi::Value` will result in an exception. An empty `Napi::Value` is
distinct from JavaScript `null` or `undefined`, which are valid values.
When C++ exceptions are disabled at compile time, a method with a `Napi::Value`
return type may return an empty `Napi::Value` to indicate a pending exception.
Thus, when C++ exceptions are not being used, callers should check the result of
`Env::IsExceptionPending` before attempting to use the value.
### IsExternal
```cpp
bool Napi::Value::IsExternal() const;
```
Returns `true` if the underlying value is a Node-API external object or `false`
otherwise.
### IsFunction
```cpp
bool Napi::Value::IsFunction() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Function` or
`false` otherwise.
### IsNull
```cpp
bool Napi::Value::IsNull() const;
```
Returns `true` if the underlying value is a JavaScript `null` or `false`
otherwise.
### IsNumber
```cpp
bool Napi::Value::IsNumber() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Number` or `false`
otherwise.
### IsObject
```cpp
bool Napi::Value::IsObject() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Object` or `false`
otherwise.
### IsPromise
```cpp
bool Napi::Value::IsPromise() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Promise` or
`false` otherwise.
### IsString
```cpp
bool Napi::Value::IsString() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::String` or `false`
otherwise.
### IsSymbol
```cpp
bool Napi::Value::IsSymbol() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::Symbol` or `false`
otherwise.
### IsTypedArray
```cpp
bool Napi::Value::IsTypedArray() const;
```
Returns `true` if the underlying value is a JavaScript `Napi::TypedArray` or
`false` otherwise.
### IsUndefined
```cpp
bool Napi::Value::IsUndefined() const;
```
Returns `true` if the underlying value is a JavaScript `undefined` or `false`
otherwise.
### StrictEquals
```cpp
bool Napi::Value::StrictEquals(const Napi::Value& other) const;
```
- `[in] other`: The `Napi::Value` object to be compared.
Returns a `bool` indicating if this `Napi::Value` strictly equals another
`Napi::Value`.
### ToBoolean
```cpp
Napi::Boolean Napi::Value::ToBoolean() const;
```
Returns a `Napi::Boolean` representing the `Napi::Value`.
This is a wrapper around `napi_coerce_to_boolean`. This will throw a JavaScript
exception if the coercion fails. If C++ exceptions are not being used, callers
should check the result of `Env::IsExceptionPending` before attempting to use
the returned value.
### ToNumber
```cpp
Napi::Number Napi::Value::ToNumber() const;
```
Returns the `Napi::Value` coerced to a JavaScript number.
### ToObject
```cpp
Napi::Object Napi::Value::ToObject() const;
```
Returns the `Napi::Value` coerced to a JavaScript object.
### ToString
```cpp
Napi::String Napi::Value::ToString() const;
```
Returns the `Napi::Value` coerced to a JavaScript string.
### Type
```cpp
napi_valuetype Napi::Value::Type() const;
```
Returns the `napi_valuetype` type of the `Napi::Value`.
[`Napi::Boolean`]: ./boolean.md
[`Napi::BigInt`]: ./bigint.md
[`Napi::Date`]: ./date.md
[`Napi::External`]: ./external.md
[`Napi::Name`]: ./name.md
[`Napi::Number`]: ./number.md
[`Napi::Object`]: ./object.md
|