napi_status napi_create_int32(napi_env env, int32_t value, napi_value* result)
[in] env: The environment that the API is invoked under.[in] value: Integer value to be represented in JavaScript.[out] result: Anapi_valuerepresenting a JavaScriptNumber.
Returns napi_ok if the API succeeded.
This API is used to convert from the C int32_t type to the JavaScript
Number type.
The JavaScript Number type is described in
[Section 6.1.6][] of the ECMAScript Language Specification.
