mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +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}`;
|
|
};
|
|
|