Last active
March 11, 2018 22:26
-
-
Save diegohaz/766177242ad24c7b05c1526018b79415 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const schema = require("schm"); | |
const userSchema = schema({ | |
name: { type: String, uppercase: true }, | |
birthdate: Date, | |
}); | |
userSchema.parse({ | |
name: "Haz", | |
birthdate: "1990-04-10", | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment