Skip to content

Instantly share code, notes, and snippets.

@baweaver
Last active August 29, 2015 13:56
Show Gist options
  • Save baweaver/9315733 to your computer and use it in GitHub Desktop.
Save baweaver/9315733 to your computer and use it in GitHub Desktop.
validates
# Playing off of my prompt idea, let's take it one step further:
name = prompt for: 'Name', validate: { with: /\w+/, or: 'Invalid name given!' }
# Where if given invalid input it will say:
# Error: Invalid name given
# Name:
@baweaver
Copy link
Author

baweaver commented Mar 2, 2014

If validation is left off, accept raw input.

If validation only has a 'with', only alert based on the 'for' instead of giving a custom message.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment