mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-21 17:09:09 +01:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
export function parseVariables(data) {
|
|
return Object.entries(data).map(([name, value]) => ({
|
|
enabled: true,
|
|
name,
|
|
value: `${value}`,
|
|
}));
|
|
}
|