u-he-preset-randomizer
Version:
Create random u-he synth presets through randomization and merging of your existing presets.
21 lines (20 loc) • 534 B
JavaScript
import autocomplete, { Separator } from 'inquirer-autocomplete-standalone';
const answer = await autocomplete({
message: 'Travel from what country?',
source: async (_input) => {
return [
new Separator('Africa'),
new Separator(),
{
value: 'Egypt',
},
new Separator('Europe'),
new Separator(),
{
value: 'Norway',
},
];
},
});
console.log(answer);
//# sourceMappingURL=test.js.map