(xs: T[])
| 24 | const log = debug('fcc:build-superblock'); |
| 25 | |
| 26 | const duplicates = <T>(xs: T[]) => xs.filter((x, i) => xs.indexOf(x) !== i); |
| 27 | |
| 28 | const createValidator = (throwOnError?: boolean) => (fn: () => void) => { |
| 29 | try { |
no outgoing calls
no test coverage detected