Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active March 11, 2018 22:41
Show Gist options
  • Save diegohaz/452c5b786df6998ecd861b162ec319a7 to your computer and use it in GitHub Desktop.
Save diegohaz/452c5b786df6998ecd861b162ec319a7 to your computer and use it in GitHub Desktop.
const schema = require("schm");
const userSchema = schema({
name: String,
age: { type: Number, min: 18 },
});
await userSchema.validate({
name: "John",
age: 17,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment