@matatbread/typia
Version:
Superfast runtime validators with only one line
12 lines (9 loc) • 324 B
JavaScript
import { _randomString } from './_randomString.mjs';
const _randomFormatEmail = () => `${random(10)}@${random(10)}.${random(3)}`;
const random = (length) => _randomString({
type: "string",
minLength: length,
maxLength: length,
});
export { _randomFormatEmail };
//# sourceMappingURL=_randomFormatEmail.mjs.map