(a, b)
| 15765 | return num ? splits.slice(0, num).concat([splits.slice(num).join(sep)]) : splits; |
| 15766 | }; |
| 15767 | var pymod = function(a, b) { |
| 15768 | var r = a % b; |
| 15769 | return r * b < 0 ? r + b : r; |
| 15770 | }; |
| 15771 | var divmod = function(a, b) { |
| 15772 | return { div: Math.floor(a / b), mod: pymod(a, b) }; |
| 15773 | }; |
no outgoing calls
no test coverage detected