UNPKG

@mui/utils

Version:
14 lines (13 loc) 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = chainPropTypes; function chainPropTypes(propType1, propType2) { if (process.env.NODE_ENV === 'production') { return () => null; } return function validate(...args) { return propType1(...args) || propType2(...args); }; }