napi_status napi_is_buffer(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 givennapi_value
represents anode::Buffer
object.
Returns napi_ok
if the API succeeded.
This API checks if the Object
passed in is a buffer.