1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
This commit is contained in:
Quinton Ashley 2022-04-29 12:42:56 -05:00
parent b9be35cb0e
commit ebb55a8601
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
const java_to_javascript = require('java-to-javascript');
self.addEventListener('message', (e) => {
if (e.data == 'QuintOS') {
window.QuintOS = true;
QuintOS = true;
return;
}
self.postMessage(java_to_javascript(e.data));

View File

@ -1,6 +1,6 @@
{
"name": "java2js",
"version": "1.2.12",
"version": "1.2.13",
"description": "Converts Java to JavaScript and runs it with a JS JDK",
"main": "jdk.js",
"scripts": {