(string1: Str, string2: Str)
| 222 | } |
| 223 | |
| 224 | static stringMod (string1: Str, string2: Str) { |
| 225 | if ((string1 === undefined) || (string2 === undefined)) { |
| 226 | return undefined; |
| 227 | } |
| 228 | return (new Precise (string1)).mod (new Precise (string2)).toString (); |
| 229 | } |
| 230 | |
| 231 | static stringOr (string1: Str, string2: Str) { |
| 232 | if ((string1 === undefined) || (string2 === undefined)) { |
no test coverage detected