Last active
March 11, 2018 22:41
-
-
Save diegohaz/452c5b786df6998ecd861b162ec319a7 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: 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