Repository URL to install this package:
Version:
0.9.5 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @see https://github.com/yannickcr/eslint-plugin-react/blob/master/lib/rules/no-unknown-property.js#L117
*/
function autofixProps(props, reactProps) {
if (props.maxlength) {
delete props.maxlength;
props.maxLength = reactProps.maxlength;
}
if (props.autocomplete) {
delete props.autocomplete;
props.autoComplete = String(reactProps.autocomplete);
}
return props;
}
exports.autofixProps = autofixProps;
//# sourceMappingURL=autofixProps.js.map