(string1, string2)
| 175 | return (new Precise(string1)).div(string2Precise, precision).toString(); |
| 176 | } |
| 177 | static stringAdd(string1, string2) { |
| 178 | if ((string1 === undefined) || (string2 === undefined)) { |
| 179 | return undefined; |
| 180 | } |
| 181 | return (new Precise(string1)).add(new Precise(string2)).toString(); |
| 182 | } |
| 183 | static stringSub(string1, string2) { |
| 184 | if ((string1 === undefined) || (string2 === undefined)) { |
| 185 | return undefined; |
no test coverage detected