UNPKG

element-react-ui-components

Version:
10 lines (7 loc) 284 B
import { createPropType } from '../utils'; export default createPropType((props, propName, componentName) => { const value = props[propName]; if (!(value instanceof RegExp)) { return new Error(`Invalid prop ${propName} of ${componentName}, should be valid regex.`); } });