"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.volumeFormat = void 0;
const volumeFormat = (volume) => {
const { source, destination, options } = volume;
return `${source}:${destination}` + (options ? `:${options}` : "");
};
exports.volumeFormat = volumeFormat;