| 1230 | } |
| 1231 | |
| 1232 | static napi_value decodeUInt32Array(napi_env env, napi_callback_info info) { |
| 1233 | return decodeArray<uint32_t>(env, info); |
| 1234 | } |
| 1235 | |
| 1236 | static napi_value encodeInt64Array(napi_env env, napi_callback_info info) { |
| 1237 | return encodeArray<int64_t>(env, info); |
nothing calls this directly
no outgoing calls
no test coverage detected