1. napi_status napi_get_property(napi_env env,
    2. napi_value object,
    3. napi_value key,
    4. napi_value* result);
    • [in] env: The environment that the N-API call is invoked under.
    • [in] object: The object from which to retrieve the property.
    • [in] key: The name of the property to retrieve.
    • [out] result: The value of the property.

    Returns napi_ok if the API succeeded.

    This API gets the requested property from the Object passed in.