mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
export const parseLaunchOptions = (params?: string | null): string[] => {
|
|
if (!params) {
|
|
return [];
|
|
}
|
|
|
|
return params.split(" ");
|
|
};
|