[out] argv: Buffer to which the napi_value representing the arguments are copied.
let o = {};function proc(a) { a.foo = 'bar';}proc(o);// { foo: 'bar' }console.log(o);