UNPKG

jsconfco

Version:

A CLI with info related to the conference

16 lines (11 loc) 214 B
'use strict' const ora = require('ora') function createSpinner (text) { const spinner = ora({ text: text, spinner: 'arrow3', color: 'yellow' }) return spinner } module.exports = createSpinner