tj / co-prompt

sane terminal user-input for node.js using thunks / generators
192 stars 23 forks source link

Added a default value parameter to prompt #7

Open techmsi opened 8 years ago

techmsi commented 8 years ago

Addresses Issue #5

Without specified default

yield prompt('first name: ');

With specified default

yield prompt('first name: ', 'John');