@ng-doc/builder
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
14 lines • 359 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatKeywordKey = formatKeywordKey;
/**
*
* @param name
*/
function formatKeywordKey(name) {
return name
.split('#')
.map((part, index) => (index === 1 ? part.toLowerCase() : part))
.join('#');
}
//# sourceMappingURL=format-keyword-key.js.map
;