UNPKG

@modyo/cli

Version:

Modyo CLI Command line to expose local development tools

14 lines (13 loc) 410 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function getTemplateNameAndVersion(identifier) { if (/@/.test(identifier)) { const split = identifier.split('@'); if (split[1] === '') { return [split[0], 'latest']; } return [split[0], split[1]]; } return [identifier, 'latest']; } exports.default = getTemplateNameAndVersion;