UNPKG

@wocker/core

Version:
9 lines (8 loc) 308 B
"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;