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