Spaces:
Running
Running
File size: 167 Bytes
01b06a3 |
1 2 3 4 5 |
import type { Model } from "$lib/types/Model";
export const findCurrentModel = (models: Model[], name?: string) =>
models.find((m) => m.name === name) ?? models[0];
|