UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

18 lines (14 loc) 322 B
import { get } from 'lodash'; const getYupInnerErrors = error => { return get(error, 'inner', []).reduce((acc, curr) => { acc[ curr.path .split('[') .join('.') .split(']') .join('') ] = { id: curr.message }; return acc; }, {}); }; export default getYupInnerErrors;