1. napi_status napi_is_arraybuffer(napi_env env, napi_value value, bool* result)
    • [in] env: The environment that the API is invoked under.
    • [in] value: The JavaScript value to check.
    • [out] result: Whether the given object is an ArrayBuffer.

    Returns napi_ok if the API succeeded.

    This API checks if the Object passed in is an array buffer.