| 123 | const isException = buildExceptionChecker(ignore); |
| 124 | |
| 125 | const hook = filename => { |
| 126 | const tokens = fetch(filename, filename); |
| 127 | return camelCase ? transformTokens(tokens, camelCase) : tokens; |
| 128 | }; |
| 129 | |
| 130 | // @todo add possibility to specify particular config for each extension |
| 131 | exts.forEach(extension => attachHook(hook, extension, isException)); |
no test coverage detected
searching dependent graphs…