Guest User

Untitled

a guest
Mar 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const schema = require("schm");
  2.  
  3. const userSchema = schema({
  4. name: { type: String, uppercase: true },
  5. birthdate: Date,
  6. });
  7.  
  8. userSchema.parse({
  9. name: "Haz",
  10. birthdate: "1990-04-10",
  11. });
Add Comment
Please, Sign In to add comment