rittenhop-dev/versions/5.94.2/node_modules/yup/es/mixed.js
2024-09-23 19:40:12 -04:00

8 lines
257 B
JavaScript

import BaseSchema from './schema';
const Mixed = BaseSchema;
export default Mixed;
export function create() {
return new Mixed();
} // XXX: this is using the Base schema so that `addMethod(mixed)` works as a base class
create.prototype = Mixed.prototype;