react-docgen
Version:
A CLI and toolkit to extract information from React components for documentation generation.
40 lines (31 loc) • 980 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _getPropertyName = _interopRequireDefault(require("./getPropertyName"));
var _docblock = require("./docblock");
/*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*
*/
/**
*
*/
var _default = (documentation, propertyPath) => {
const propName = (0, _getPropertyName.default)(propertyPath);
const propDescriptor = documentation.getPropDescriptor(propName);
if (propDescriptor.description) {
return;
}
propDescriptor.description = (0, _docblock.getDocblock)(propertyPath) || '';
};
exports.default = _default;