rittenhop-dev/versions/5.94.2/node_modules/yup/es/setLocale.js

8 lines
231 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
import locale from './locale';
export default function setLocale(custom) {
Object.keys(custom).forEach(type => {
Object.keys(custom[type]).forEach(method => {
locale[type][method] = custom[type][method];
});
});
}