(mapper, comparator)
| 455 | }, |
| 456 | |
| 457 | sortBy(mapper, comparator) { |
| 458 | return reify(this, sortFactory(this, comparator, mapper)); |
| 459 | }, |
| 460 | |
| 461 | take(amount) { |
| 462 | return this.slice(0, Math.max(0, amount)); |
nothing calls this directly
no test coverage detected