* @param {string} name * @returns {string}
(name)
| 78 | * @returns {string} |
| 79 | */ |
| 80 | function normalizeAlgorithm(name) { |
| 81 | return StringPrototypeReplace(StringPrototypeToLowerCase(name), '-', ''); |
| 82 | } |
| 83 | |
| 84 | const maybeEmitDeprecationWarning = getDeprecationWarningEmitter( |
| 85 | 'DEP0198', |
no outgoing calls
no test coverage detected
searching dependent graphs…