()
| 10 | import diff from '../'; |
| 11 | |
| 12 | const char = () => |
| 13 | fc.string({maxLength: 1, minLength: 1, unit: 'grapheme-ascii'}); |
| 14 | |
| 15 | const findCommonItems = (a: Array<string>, b: Array<string>): Array<string> => { |
| 16 | const array: Array<string> = []; |
no outgoing calls
no test coverage detected