@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
23 lines • 562 B
JavaScript
/**
* Shared CLI formatting utilities
*
* Common formatting functions used across CLI command modules.
*/
/**
* Format a table row with padding
*/
export function formatRow(label, value, width = 30) {
const paddedLabel = label.padEnd(width);
return `${paddedLabel} ${value}`;
}
/**
* Format currency value
*/
export function formatCost(cost, currency = "USD") {
return new Intl.NumberFormat("en-US", {
style: "currency",
currency,
minimumFractionDigits: 4,
}).format(cost);
}
//# sourceMappingURL=formatters.js.map