()
| 116 | .join('')); |
| 117 | |
| 118 | const getPrettierConfig = async () => ({ |
| 119 | ...JSON.parse(await promises.readFile('.prettierrc', UTF8)), |
| 120 | parser: 'typescript', |
| 121 | }); |
| 122 | |
| 123 | const allOf = (array, cb) => Promise.all(array.map(cb)); |
| 124 | const allModules = (cb) => allOf(ALL_MODULES, cb); |
no outgoing calls
no test coverage detected
searching dependent graphs…