UNPKG

cosmic-local-interchain

Version:

A command-line utility for Cosmic Interchain Messenger Local Networks

9 lines 255 B
import { confirm } from '@inquirer/prompts'; export const autoConfirm = async (message, skipConfirmation, fn) => { if (skipConfirmation) { fn(); return true; } return confirm({ message }); }; //# sourceMappingURL=prompts.js.map