"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Return list of plugin names. This method is nly used in unit tests. * * @param {OrderedMap} */ function toNames(plugins) { return plugins .map((plugin) => { return plugin.getName(); }) .toArray(); } exports.default = toNames;