We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d30fd commit 9cac225Copy full SHA for 9cac225
src/integer.js
@@ -68,6 +68,14 @@ export function imod ( first , second ) {
68
return first.imod(second) ;
69
}
70
71
+export function divmod ( first , second ) {
72
+ return first.divmod(second) ;
73
+}
74
+
75
+export function idivmod ( first , second ) {
76
+ return first.idivmod(second) ;
77
78
79
export function addn ( first , second ) {
80
return first.addn(second) ;
81
@@ -115,3 +123,11 @@ export function modn ( first , second ) {
115
123
export function imodn ( first , second ) {
116
124
return first.imodn(second) ;
117
125
126
127
+export function divmodn ( first , second ) {
128
+ return first.divmodn(second) ;
129
130
131
+export function idivmodn ( first , second ) {
132
+ return first.idivmodn(second) ;
133
0 commit comments