1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/jdk/java/util/Formatter.js
Quinton Ashley 159919e856 1.0.4
2021-09-24 00:36:29 -05:00

18 lines
450 B
JavaScript
Executable File

jdk.imports['java.util.Formatter'].load = async () => {
const IllegalFormatException = await jdk.import('java.util.IllegalFormatException');
class Formatter {
format(format, ...args) {
let regex = /%[0-9\.]*[\w]/;
for (let arg of args) {
if (!regex.test(format)) {
throw new IllegalFormatException();
}
format = format.replace(regex, arg.toString());
}
return format;
}
}
jdk.java.util.Formatter = Formatter;
};