mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-24 03:05:41 +00:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
export default (operation, from, to) => {
|
|
if (!to)
|
|
return `${operation} ${from}`;
|
|
|
|
return `${operation} ${from} -> ${to}`;
|
|
};
|
|
|