arch-unit-ts
Version:
10 lines • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Formatters = void 0;
class Formatters {
static joinSingleQuoted(...packageIdentifiers) {
return packageIdentifiers.map(packageIdentifier => `'${packageIdentifier}'`).join(', ');
}
}
exports.Formatters = Formatters;
//# sourceMappingURL=Formatters.js.map