* Returns the context used when converting a dictionary member. * @param {string} key Dictionary member identifier. * @param {ConversionOptions} options Conversion options. * @returns {string}
(key, options)
| 652 | * @returns {string} |
| 653 | */ |
| 654 | function dictionaryMemberContext(key, options) { |
| 655 | return options.context ? `${key} in ${options.context}` : key; |
| 656 | } |
| 657 | |
| 658 | /** |
| 659 | * Returns the context used when converting a sequence element. |
no outgoing calls
no test coverage detected
searching dependent graphs…