Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Created March 12, 2018 00:00
Show Gist options
  • Save diegohaz/8a410d08ae369d9fbfac1196a4888de6 to your computer and use it in GitHub Desktop.
Save diegohaz/8a410d08ae369d9fbfac1196a4888de6 to your computer and use it in GitHub Desktop.
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