(array: any[], limit: number)
| 23 | return array; |
| 24 | } |
| 25 | limit(array: any[], limit: number) { |
| 26 | const q = new DataQuery({limit}); |
| 27 | array = [...array]; |
| 28 | q.applyLimit(array); |
| 29 | return array; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | describe('dataquery service', () => { |
no test coverage detected