(input: object)
| 84 | stringified.slice(1, -1).replaceAll(/\\("|\\)/g, '$1'); |
| 85 | |
| 86 | const isAnyOrAnything = (input: object) => |
| 87 | '$$typeof' in input && |
| 88 | input.$$typeof === Symbol.for('jest.asymmetricMatcher') && |
| 89 | ['Any', 'Anything'].includes(input.constructor.name); |
| 90 | |
| 91 | const deepMergeArray = (target: Array<any>, source: Array<any>) => { |
| 92 | const mergedOutput = [...target]; |