1.0.4 • Published 5 years ago
select-a-thingie v1.0.4
select-a-thingie
makes you select a thingie
you can figure it out by the example:
const select = require("select-a-thingie");
let thingies = [
"hey i'm a selection",
"you can also select me"
]
select(thingies, "ascii", "sample note", (index) => {
console.log("you selected: " + thingies[index]);
process.exit();
});