(config)
| 34100 | */ parcelHelpers.export(exports, "constructKeytip", ()=>constructKeytip); |
| 34101 | var _tslib = require("tslib"); |
| 34102 | function buildKeytipConfigMap(config) { |
| 34103 | var configMap = {}; |
| 34104 | for(var _i = 0, _a = config.keytips; _i < _a.length; _i++){ |
| 34105 | var keytip = _a[_i]; |
| 34106 | constructKeytip(configMap, [], keytip); |
| 34107 | } |
| 34108 | return configMap; |
| 34109 | } |
| 34110 | function constructKeytip(configMap, parentSequence, keytip) { |
| 34111 | // Compute full key sequence |
| 34112 | var sequence = keytip.sequence ? keytip.sequence : keytip.content.toLocaleLowerCase(); |
nothing calls this directly
no test coverage detected