honkit
Version:
HonKit is building beautiful books using Markdown.
17 lines (16 loc) • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Return list of plugin names. This method is nly used in unit tests.
*
* @param {OrderedMap<String:Plugin} plugins
* @return {Array<String>}
*/
function toNames(plugins) {
return plugins
.map((plugin) => {
return plugin.getName();
})
.toArray();
}
exports.default = toNames;