Guest User

Untitled

a guest
Mar 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const schema = require("schm");
  2.  
  3. const userSchema = schema({
  4. name: String,
  5. age: { type: Number, min: 18 },
  6. });
  7.  
  8. await userSchema.validate({
  9. name: "John",
  10. age: 17,
  11. });
Add Comment
Please, Sign In to add comment