UNPKG

enquirer

Version:

Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.

12 lines (8 loc) 192 B
'use strict'; const Select = require('./select'); class MultiSelect extends Select { constructor(options) { super({ ...options, multiple: true }); } } module.exports = MultiSelect;