mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
'use strict';
|
|
|
|
module.exports = (operation, from, to) => {
|
|
if (!to)
|
|
return `${operation} ${from}`;
|
|
|
|
return `${operation} ${from} -> ${to}`;
|
|
};
|