* Parse custom_pre_function options * @private * @param {object|*} customPreFunction a custom function object containing function_type and source values * @return {string|*} custom_pre_function transformation string
(customPreFunction)
| 186 | * @return {string|*} custom_pre_function transformation string |
| 187 | */ |
| 188 | function process_custom_pre_function(customPreFunction) { |
| 189 | let result = process_custom_function(customPreFunction); |
| 190 | return utils.isString(result) ? `pre:${result}` : null; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Parse "if" parameter |
no test coverage detected