UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives

24 lines (23 loc) 621 B
/** * ./src/lib/get_domain.ts * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import inquirer from 'inquirer'; export default async function getDomain(initial = '') { return new Promise((resolve) => { const questions = [ { default: initial, message: 'What is domain of this network? ', name: 'domain', type: 'input' } ]; inquirer.prompt(questions).then((options) => { resolve(options.domain); }); }); }