| 1238 | } |
| 1239 | |
| 1240 | static napi_value decodeInt64Array(napi_env env, napi_callback_info info) { |
| 1241 | return decodeArray<int64_t>(env, info); |
| 1242 | } |
| 1243 | |
| 1244 | static napi_value encodeUInt64Array(napi_env env, napi_callback_info info) { |
| 1245 | return encodeArray<uint64_t>(env, info); |
nothing calls this directly
no outgoing calls
no test coverage detected