(s, o, i)
| 39051 | function replace(s, o, i) { |
| 39052 | return { op: 'replace', path: s, value: o, meta: i } |
| 39053 | } |
| 39054 | function forEachNewPatch(s, o, i) { |
| 39055 | return cleanArray( |
| 39056 | flatten(s.filter(isAdditiveMutation).map((s) => o(s.value, i, s.path)) || []) |
| 39057 | ) |
| 39058 | } |
| 39059 | function forEachPrimitive(s, o, i) { |
| 39060 | return ( |
no test coverage detected