* Returns algorithm for given name. * @protected * @param {string} name Algorithm name * @return {?object} Algorithm object or null, if not found.
(name)
| 281 | * @return {?object} Algorithm object or null, if not found. |
| 282 | */ |
| 283 | static getAlgorithm (name) { |
| 284 | return algorithms.find(algorithm => algorithm.name === name) |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Returns algorithm objects available in the current environment. |
no outgoing calls
no test coverage detected