Skip to content

Instantly share code, notes, and snippets.

@junibrosas
Last active February 5, 2019 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junibrosas/2a020afc09c257d0b8925e75da0e07f2 to your computer and use it in GitHub Desktop.
Save junibrosas/2a020afc09c257d0b8925e75da0e07f2 to your computer and use it in GitHub Desktop.
Gibberish Snippets
// match regex yes
rl.question('Are you sure you want to download reference pictures? (y(es))', async (answer) => {
if (answer.match(/^y(es)?$/i)) {
await downloadNewRefPics(newRefPicsList);
}
rl.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment