* Extracts child collection items as a sorted plain array for comparison.
(collection: any, sortKey = `id`)
| 90 | * Extracts child collection items as a sorted plain array for comparison. |
| 91 | */ |
| 92 | function childItems(collection: any, sortKey = `id`): Array<any> { |
| 93 | return sortedPlainRows(collection, sortKey) |
| 94 | } |
| 95 | |
| 96 | function stripVirtualPropsDeep(value: any): any { |
| 97 | if (Array.isArray(value)) { |
no test coverage detected