(ast, options, handlers)
| 49 | } |
| 50 | |
| 51 | function runHandler(ast, options, handlers) { |
| 52 | if (!Array.isArray(handlers)) { |
| 53 | handlers = [handlers]; |
| 54 | } |
| 55 | |
| 56 | handlers.forEach(fn => fn(ast, options)); |
| 57 | } |
| 58 | |
| 59 | function minify(context, source, options) { |
| 60 | options = options || {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…