recharts
Version:
React charts
12 lines (11 loc) • 310 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getClassNameFromUnknown = getClassNameFromUnknown;
function getClassNameFromUnknown(u) {
if (u && typeof u === 'object' && 'className' in u && typeof u.className === 'string') {
return u.className;
}
return '';
}