(stack, message)
| 93 | * @returns {string} stack trace without the webpack options flag and message included |
| 94 | */ |
| 95 | const cleanUpWebpackOptions = (stack, message) => { |
| 96 | stack = cutOffWebpackOptions(stack); |
| 97 | stack = cutOffMultilineMessage(stack, message); |
| 98 | return stack; |
| 99 | }; |
| 100 | |
| 101 | module.exports.cleanUp = cleanUp; |
| 102 | module.exports.cleanUpWebpackOptions = cleanUpWebpackOptions; |
nothing calls this directly
no test coverage detected