| 254 | } |
| 255 | |
| 256 | Napi::Value TModel::GetModelFloatFeaturesCount(const Napi::CallbackInfo& info) { |
| 257 | Napi::Env env = info.Env(); |
| 258 | const size_t count = GetFloatFeaturesCount(this->Handle); |
| 259 | |
| 260 | return Napi::Number::New(env, count); |
| 261 | } |
| 262 | |
| 263 | Napi::Value TModel::GetModelCatFeaturesCount(const Napi::CallbackInfo& info) { |
| 264 | Napi::Env env = info.Env(); |
nothing calls this directly
no test coverage detected