(limit?: number)
| 243 | |
| 244 | // Limit and offset |
| 245 | limit(limit?: number): this { |
| 246 | if (limit !== undefined) { |
| 247 | this._limit = limit; |
| 248 | } |
| 249 | return this; |
| 250 | } |
| 251 | |
| 252 | offset(offset?: number): this { |
| 253 | if (offset !== undefined) { |
no outgoing calls
no test coverage detected