mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 08:56:20 +00:00
6 lines
153 B
JavaScript
6 lines
153 B
JavaScript
export const format = (operation, from, to) => {
|
|
if (!to)
|
|
return `${operation} ${from}`;
|
|
|
|
return `${operation} ${from} -> ${to}`;
|
|
};
|