| 1222 | } |
| 1223 | |
| 1224 | static napi_value decodeInt32Array(napi_env env, napi_callback_info info) { |
| 1225 | return decodeArray<int32_t>(env, info); |
| 1226 | } |
| 1227 | |
| 1228 | static napi_value encodeUInt32Array(napi_env env, napi_callback_info info) { |
| 1229 | return encodeArray<uint32_t>(env, info); |
nothing calls this directly
no outgoing calls
no test coverage detected