Created
March 12, 2018 00:00
-
-
Save diegohaz/8a410d08ae369d9fbfac1196a4888de6 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 translate = require("schm-translate"); | |
const userSchema = schema({ | |
name: String, | |
email: String, | |
}, translate({ | |
email: "emails.0", | |
})); | |
userSchema.parse({ | |
name: "Haz", | |
emails: ["[email protected]"], | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment