| 1234 | } |
| 1235 | |
| 1236 | static napi_value encodeInt64Array(napi_env env, napi_callback_info info) { |
| 1237 | return encodeArray<int64_t>(env, info); |
| 1238 | } |
| 1239 | |
| 1240 | static napi_value decodeInt64Array(napi_env env, napi_callback_info info) { |
| 1241 | return decodeArray<int64_t>(env, info); |
nothing calls this directly
no outgoing calls
no test coverage detected