UNPKG

@deploystack/docker-to-iac

Version:

Translate docker run and docker compose file to Infrastructure as Code

13 lines (12 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseCommand = parseCommand; function parseCommand(command) { if (!command) { return ''; } if (Array.isArray(command)) { return command.join(' '); } return command.toString(); }